Advertisement
lol1234561

Untitled

Feb 14th, 2023
1,053
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.65 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main {
  3.     public static void main(String[] args) {
  4. Scanner keyboard = new Scanner(System.in);
  5.  
  6. String name;
  7. int age;
  8. double money;
  9.  
  10.         System.out.println("Hello. What is your name? ");
  11.         name = keyboard.next();
  12.         System.out.println("Hi " + name + " how old are you? ");
  13.         age = keyboard.nextInt();
  14.         System.out.println("So you're " + age + ", eh?  That's not old at all! ");
  15.         System.out.println("How much do you make? " + name + "?");
  16.         money = keyboard.nextDouble();
  17.  
  18.         System.out.println(money + "! I hope that's per hour and not per year!");
  19.  
  20.  
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement