Guest User

Untitled

a guest
Apr 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1.     System.out.print("Namn:\t\t");
  2.                 System.out.flush();
  3.                 String name = in.nextLine();
  4.                
  5.                 System.out.print("Ras:\t\t");
  6.                 System.out.flush();
  7.                 String race = in.nextLine();
  8.                
  9.                 System.out.print("Ålder:\t\t");
  10.                 System.out.flush();
  11.                 int age = in.nextInt();
  12.                
  13.                 System.out.print("Vikt(kg):\t");
  14.                 System.out.flush();
  15.                 double weight = in.nextDouble();
Add Comment
Please, Sign In to add comment