在欧拉题目里,为什么我的是172天,它们的都是171天
//20 世纪(1901 年 1 月 1 日到 2000 年 12 月 31 日)一共有多少个星期日落在了当月的第一天?/*
1900 年 1 月 1 日是星期一。
30 天的月份有:9 月,4 月,6 月,1 1月。
此外的月份都是 31 天,当然 2 月除外。
2 月在闰年有 29 天,其他时候有 28 天。
年份可以被 4 整除的时候是闰年,但是不能 400 整除的世纪年(100 的整数倍年)除外。
*/
#include<stdio.h>
int main(void)
{
int i;//年份
int k;//月份
int month=0;
int count=1;
for(i=1901;i<=2000;i++)
{
for(k=1;k<=12;k++)
{
if(k==1||k==3||k==5||k==7||k==8||k==10||k==12)//判断31的天数
{
if(count%7==0)
{
month=month+1;
printf("%d-%d",i,k);
}
count=count+31;
}
else if(k==4||k==6||k==9||k==11)//判断30的天数
{
if(count%7==0)
{
month=month+1;
printf("%d-%d",i,k);
}
count=count+30;
}
//else if(k==2&&i%4==0&&i%100!=0||k==2&&k%400==0),干逻辑短路了,sb......sb
else if(k==2&&i%4==0&&i%100!=0||k==2&&k%400==0)//判断闰年2月份的天数
{
if(count%7==0)
{
month=month+1;
printf("%d-%d",i,k);
}
count=count+29;
}
else
{
if(count%7==0)
{
month=month+1;
printf("%d-%d",i,k);
}
count=count+28;
}
}
}
printf("20世纪有%d个星期日是当月的第一天",month);
return 0;
} 你好,错误在判断闰年2月份天数那个if语句里面,判断能否被400整除,应该用i,i代表年份,k代表月份。 谢谢
叶落了 发表于 2023-6-20 10:02
谢谢
不用客气哦
页:
[1]