Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main
  3. {
  4. public void Dane(){
  5. System.out.print("Jak masz na imię?" );
  6. Scanner scanner=new Scanner(System.in);
  7. String name=scanner.next();
  8. //zabezpieczenie przed wpisaniem numeru
  9.  
  10. System.out.println("Witaj "+name); System.out.println("Ile masz lat?");
  11. int age=scanner.nextInt();
  12. //zapieczenie przed wpisaniem liter
  13. if(age==21)
  14. System.out.println("Zatem jesteśmy rówieśniczkami, skąd pochodzisz?");
  15. else
  16. System.out.println("Dobrze, skąd pochodzisz?");
  17. System.out.println("1.Pomorskie");
  18. System.out.println("2.Mazowieckie");
  19. int city=scanner.nextInt();
  20. switch(city){
  21. case 1:
  22. System.out.println("Super! Ja też."); break;
  23. case 2:
  24. System.out.println("ok to nara"); break;
  25. }
  26. }
  27.  
  28. public static void main(String[] args) {
  29. Main a=new Main();
  30. a.Dane();
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement