Advertisement
feagans

Untitled

Apr 6th, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public static int[] get_av_students() {
  2. int av_students[] = new int[9];
  3. for(int i = 0; i < 9; i++)
  4. try{
  5. {
  6. int hour = (10 + i)%12;
  7. if ( hour == 0 ) {
  8. hour = 12;
  9. }
  10.  
  11. av_students[i] = Integer.parseInt(JOptionPane.showInputDialog(null, "Average Students "+hour+":00"));
  12. }
  13. }catch (IllegalArgumentException ex) {
  14. JOptionPane.showMessageDialog(null, " NO NEGETIVES ALLOWED ");
  15. }
  16. return av_students;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement