Advertisement
Guest User

tua mae

a guest
Oct 31st, 2014
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. package ip;
  2.  
  3. public class Week {
  4. public static final int MONDAY = 1;
  5. public static final int TUESDAY = 2;
  6. public static final int WEDNESDAY = 3;
  7. public static final int THURSDAY = 4;
  8. public static final int FRIDAY = 5;
  9. public static final int SATURDAY = 6;
  10. public static final int SUNDAY = 7;
  11. private int firstWeekDay;
  12.  
  13. public Week(int firstWeekDay){
  14.     this.firstWeekDay = firstWeekDay;
  15.         }
  16. public int WeekDay (int day){
  17.     return (firstWeekDay + day) % 8;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement