加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
homework.cpp 926 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sunples 提交于 2024-03-01 15:51 . 第二次改名字
#include <stdio.h>
/* 1990年1月1日 是星期一 */
int is_leap_year(int year) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
return 1;
}
return 0;
}
int calculate_days(int year, int month, int day) {
int days = 0;
int days_in_month[] = {31, 28 + is_leap_year(year), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
for (int i = 1990; i < year; i++) {
days += 365 + is_leap_year(i);
}
for (int i = 0; i < month - 1; i++) {
days += days_in_month[i];
}
days += day;
return days;
}
int main(){
int year, month, day, week;
scanf("%d/%d/%d", &year, &month, &day);
int days = calculate_days(year, month, day);
week = days % 7;
if (week != 0) {
printf("%d年%d月%d日是星期%d\n", year, month, day, week);
} else {
printf("%d年%d月%d日是星期日\n", year, month, day);
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化