首页 > 代码库 > 练习Calendar类(求未来10年的黑色星期五)
练习Calendar类(求未来10年的黑色星期五)
如果13号是星期五,就称为“黑色星期五”,好像是耶稣死的日子
1 package com.fj; 2 3 import java.util.Calendar; 4 5 public class BlackFriday { 6 private static final int CURRENT_DAY = 13; 7 public static void main(String[] args) { 8 Calendar cal = Calendar.getInstance(); 9 int year = cal.get(Calendar.YEAR);10 int month = cal.get(Calendar.MONTH);11 for (int j = 0; j < 10; j++) {12 for (int i = month; i < 12; i++) {13 cal.set(year, i, CURRENT_DAY);14 int a = cal.get(Calendar.DAY_OF_WEEK);15 if (a == 6) {16 System.out.println(cal.get(Calendar.YEAR)+"年"+(cal.get(Calendar.MONTH)+1) +"月"+ cal.get(Calendar.DAY_OF_MONTH)17 +"日 是黑色星期五");18 }19 }20 month = 0;21 year++;22 }23 }24 }
练习Calendar类(求未来10年的黑色星期五)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。