Advertisement
Guest User

Untitled

a guest
Feb 15th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1.  
  2. package list;
  3.  
  4. /**
  5.  *
  6.  * @author Steve
  7.  */
  8. public class Main {
  9.     public static void main(String args[]){
  10.         List list = new List(15);
  11.         list.print();
  12.         list.fillWithRandom();
  13.         list.print();
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement