Advertisement
ricardorichsn

Autor

Mar 20th, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Autor{
  2.     String nome;
  3.     String cidade;
  4.    
  5.     public Autor(String nome, String cidade){
  6.         this.nome = nome;
  7.         this.cidade = cidade;
  8.     }
  9.     public String getAutor(){
  10.         return "\nNome: "+nome+"\nCidade: "+cidade;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement