Advertisement
Guest User

Untitled

a guest
Dec 6th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class ProgramSkelett {
  4.  
  5. Scanner input = new Scanner( System.in );
  6.  
  7. public void start()
  8. {
  9. System.out.println("Hi and welcome to our dog-care center");
  10. }
  11.  
  12.  
  13. public void registerNewDog()
  14. {
  15. System.out.println("Please enter your dogs name: ");
  16. String dogName = input.nextLine();
  17. }
  18.  
  19. public void increaseAge()
  20. {
  21.  
  22. }
  23.  
  24. public void listDogs()
  25. {
  26.  
  27. }
  28.  
  29. public void removeDog()
  30. {
  31.  
  32. }
  33.  
  34. public void exit()
  35. {
  36.  
  37. }
  38.  
  39.  
  40. public void main(String[] args)
  41. {
  42. ProgramSkelett program = new ProgramSkelett();
  43.  
  44. program.start();
  45.  
  46.  
  47. }
  48.  
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement