到底哪里错了搞了一晚上就是不知道哪里错了
求大佬教导下
我有些绝望
求大佬教导下
我有些绝望
2019-06-09
可以参考我的代码 跟你思路差不多
int year = 2008;
int month = 8;
int day = 8;
int sum = 0;
int sum2=0;
/*
* 请使用switch语句,if...else语句完成本题
* 如有想看小编思路的,可以点击左侧任务中的“不会了怎么办”
* 小编还是希望大家独立完成哦~
*/
if((year%4==0&&year%100!=0)||year%400==0)
{
sum2=29;
}
else
{
sum2=28;
}
switch(month)
{
case 1:sum=sum+day;break;
case 2:sum= day +30;break;
case 3:sum=day+31+sum2;break;
case 4:sum=day+30+31+sum2;break;
case 5:sum=day+31+30+31+sum2;break;
case 6:sum=day+30+31+30+31+sum2;break;
case 7:sum=day+31+30+31+30+31+sum2;break;
case 8:sum=day+31+31+30+31+30+31+sum2;break;
case 9:sum=day+30+31+31+30+31+30+31+sum2;break;
case 10:sum=day+31+30+31+31+30+31+30+31+sum2;break;
case 11:sum=day+30+31+30+31+31+30+31+30+31+sum2;break;
case 12:sum=day+31+30+31+30+31+31+30+31+30+31+sum2;break;
default:printf("一年当中只有12个月哦!");break;
}
printf("%d年%d月%d日是该年的第%d天\n",year,month,day,sum);
#include <stdio.h>
int main()
{
int year = 2008;
int month = 8;
int day = 8;
int sum=0;
for(int i=1; i<=month; i++)
{
if(i==month)
{
sum+=day;
break;
}
switch(i)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
sum+=31;
break;
case 4:
case 6:
case 9:
case 11:
sum+=30;
break;
case 2:
if(year%4==0&&year%100!=0||year%400==0)
sum+=29;
else
sum+=28;
break;
default:
break;
}
}
printf("%d年%d月%d日是该年的第%d天",year,month,day,sum);
return 0;
}
#include <stdio.h>
int md(int i){
switch(i)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
return 28;
default:
return 0;
}
}
int main()
{
/* 定义需要计算的日期 */
int year = 2008;
int month = 8;
int day = 8;
int total = 0;
for(int i=1;i<month;i++)
{
total += md(i);
}
if(year%4==0 && year%100!=0)
{
total++;
}
total+=day;
printf("%d年%d月%d日是该年的第%d天",year,month,day, total);
return 0;
}
if(year%400==0 && year&4==0 && year%100!=0) //当year能被400整除,同时,year能被4整除,同时,year不能被100整除。 /*&&(与,以及,同时)满足所有条件为真。 ||(或者)满足一个条件为真。 !(非,不)不满足条件为真。逻辑非好像要用在最前面。 if(! 0+1==1 && 1+1==2)可以成功运行, 而if(0+1==1 ! 1+1==2) if(0+1==1 && 1+1==2 !) 这两个都显示运行错误*/ //少了个括号及换成||。year能被400整除同时不能被100整除过分了点吧。 //右边的显示面板,错误的地方下方会有 ^ 标记,或者是 ^ 加个波浪线标记。 if(year%400==0 || (year%4==0 && year%100!=0)) /*当year能被400整除时,或者(当year能被4整除,同时,year不能被100整除)。 则为真,否则运行else。*/ //左边窗口可以点击"不会了怎么办",可以比对看哪里错误。
举报