Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. /**
  4. * Cos tu nie działa w tym stringu zgoda
  5. */
  6. public class ProgramDoZabawy {
  7. public static void main(String[] args) {
  8. Scanner in = new Scanner(System.in);
  9.  
  10. System.out.print("Jak się nazywasz?");
  11. String name = in.nextLine();
  12.  
  13. System.out.print("A ile masz lat?");
  14. int age = in.nextInt();
  15.  
  16. System.out.print("Dobra to teraz zrobimy quiz. Zeby zacząć musisz wpisac dowolny wyraz.");
  17. String zgoda = in.nextLine();
  18.  
  19. System.out.print("Co lubisz jeść?");
  20. String Jedzenie = in.nextLine();
  21.  
  22. System.out.print("Uważasz że program jest OK?");
  23. String odpowiedz = in.nextLine();
  24.  
  25. System.out.print("Co właśnie robisz?");
  26. String Robota = in.nextLine();
  27.  
  28. System.out.print("To koniec ,sorka że tak mało :( Zeby skończyć wpisz 'Koniec'");
  29. String koniec= in.nextLine();
  30.  
  31. System.out.println("DZIEKI ZA WYKONANIE TESTU!");
  32. System.out.print(" A to twoje odpowiedzi: ");
  33.  
  34. System.out.println("Nazywasz się: " + name);
  35. System.out.println("Masz " + age + "lat");
  36. System.out.println("Lubisz jeść " + Jedzenie);
  37. System.out.println("Czy program jest OK? " + odpowiedz);
  38. System.out.println("Co właśnie robisz? " + Robota);
  39.  
  40. System.out.println("JESZCZE RAZ DZIEKI I MILEGO DNIA!");
  41. }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement