解题思路:switch累加
注意事项:重复使用:while(scanf("%d/%d/%d",&year,&month,&day)!=EOF){ 算法代码 }
参考代码:
#include <stdio.h> int main() { int year,month,day,total; while(scanf("%d/%d/%d",&year,&month,&day)!=EOF) { total=0; total+=day; switch(month-1) { case 11: total+=30; case 10: total+=31; case 9: total+=30; case 8: total+=31; case 7: total+=31; case 6: total+=30; case 5: total+=31; case 4: total+=30; case 3: total+=31; case 2: total+=28; case 1: total+=31; } if(year%400==0||year%4==0&&year%100!=0) if(month>2) total++; printf("%d\n",total); } }
0.0分
2 人评分
C语言训练-舍罕王的失算 (C++代码)(都给答案了还算什么)浏览:994 |
C语言训练-谁家孩子跑最慢* (C语言代码)浏览:1544 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:2498 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:607 |
Pascal三角 (C语言代码)格式错误浏览:551 |
C语言训练-大、小写问题 (C语言代码)浏览:649 |
【亲和数】 (C语言代码)浏览:628 |
模拟计算器 (C++代码)浏览:885 |
字符逆序 (C语言代码)浏览:675 |
简单的a+b (C语言代码)浏览:473 |