Advertisement
Guest User

Untitled

a guest
Jan 9th, 2013
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. import static java.lang.System.*;
  2.  
  3. public class NumberTester
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         //add test cases
  8.         Number testNum = new Number(7);
  9.         System.out.println(testNum);
  10.         testNum.setNumber(496);
  11.         System.out.println(testNum);
  12.        
  13.        
  14.        
  15.        
  16.         //add more test cases
  17.        
  18.        
  19.        
  20.        
  21.        
  22.        
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement