Advertisement
wtmhahagd

public class Fluffy

Aug 24th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public class Fluffy {
  2. public static void main(String[] args) {
  3. SysAdmin ahamilto = new SysAdmin("cheeseburgers");
  4. Students[] students = new Students[1879];
  5. for (int i = 0; i < students.length; i++)
  6. students.enterData(i);
  7.  
  8. for (int i = 0; i < students.length; i++)
  9. for (int j = 0; j < students[i].emails.length; j++)
  10. ahamilto.email(students[i].emails[j]);
  11.  
  12. System.out.print("FLUFFY!");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement