Guest User

Untitled

a guest
Feb 26th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import java.util.Calendar;
  2. public class Test{
  3. public static void main(String args[]) {
  4.  
  5. int counter = 0;
  6. Calendar c = Calendar.getInstance();
  7. for (int i = 1900; i<=2000; i++){
  8. for (int j = 1; j <=12; j++){
  9. c.set(i, j, 1);
  10. int day_of_week = c.get(Calendar.DAY_OF_WEEK);
  11. if(day_of_week==4){
  12. counter++;
  13. }
  14. }
  15. }
  16. System.out.println(counter);
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment