Guest User

Untitled

a guest
Jun 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class IanTarkastus {
  4.  
  5. public static void main(String[] args) {
  6. Scanner lukija = new Scanner(System.in);
  7.  
  8. System.out.print("Kuinka vanha olet? ");
  9. int ika = Integer.parseInt(lukija.nextLine());
  10.  
  11. if (ika > 0 && < 120) {
  12. System.out.println("OK");
  13. } else {
  14. System.out.println("Mahdotonta!");
  15. }
  16. }
Add Comment
Please, Sign In to add comment