Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         Scanner keyboard = new Scanner(System.in);
  8.  
  9.         String name;
  10.         int age;
  11.         System.out.print("Hello. Whats your name?");
  12.         name = keyboard.next();
  13.  
  14.         System.out.print("Hi,"   + name +   " How old are you?");
  15.         age = keyboard.nextInt() ;
  16.  
  17.         System.out.print("Did you know that in 5 years you will be " + (age + 5) + " years old?");
  18.         System.out.print("And five years ago you were" + (age - 5) + " Imagine that!!");
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement