Advertisement
Guest User

Untitled

a guest
Dec 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Application class
  2.  
  3. package one;
  4.  
  5. public class Application {
  6. String full_name;
  7. int phone_number;
  8.  
  9. public Application(String full_name) {
  10. this.full_name = full_name;
  11. }
  12.  
  13. public void aPhone_number(int aPhone_number) {
  14. phone_number = aPhone_number;
  15. }
  16.  
  17. public void printApplication() {
  18. System.out.println("ФИО: "+ full_name );
  19. System.out.println("Номер телефона: "+ phone_number );
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement