Advertisement
wingman007

Java - console input

Nov 9th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class ConsoleInput {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         System.out.print("Input i = ");
  7.         int i = scanner.nextInt();
  8.         System.out.print("Input j = ");
  9.         int j = scanner.nextInt();
  10.         scanner.close();
  11.         System.out.println("i+j=" + (i + j));
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement