Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class List
  2. {
  3. final int MAX_LENGTH = 20
  4. int[] list;
  5. int length;
  6. public List()
  7. {
  8. list = new int[MAX_LENGTH];
  9. length = 0
  10. }
  11. // Methods to manipulate the list
  12. ...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement