Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.26 KB | None | 0 0
  1. public class TestaProduto {
  2.  
  3.     public static void main(String[] args) {
  4.         Produto p = new Produto();// variavel p é do tipo Produto
  5.         p.receberDados ();
  6.         p.calcularValorVenda ();
  7.         p.exibirDados ();
  8.     } // fim da classe principal
  9. } // fim da classe TESTAPRODUTO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement