Advertisement
Guest User

Untitled

a guest
Jul 13th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class HelloWorld {
  4. public static void main(String[] args) {
  5. Scanner input;
  6.  
  7. input = new Scanner(System.in);
  8.  
  9. int a;
  10.  
  11. System.out.print("Enter a number: \n\t");
  12.  
  13. a = input.nextInt();
  14.  
  15. System.out.println(NewMath.mathTest(2, 3));
  16. input.close();
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement