Guest User

Untitled

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