Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. public static void main (String[] args){
  2.     kurs kot = new kurs();
  3.     System.out.println("Podaj imie kota: ");
  4.     kot.setImie(getUserInput());
  5.     System.out.println("Podaj imie opiekuna: ");
  6.     kot.setImieOpiekuna(getUserInput());
  7.     Date data = new Date();
  8.     SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
  9.     System.out.println("Podaj date: " + sdf.format(data));
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement