解题思路:
注意事项:
参考代码:
#include <stdio.h>
int main()
{
int m[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
int year,month,day;
int i,date=0;
year=2018; month=7;day=19;
for(i=1;i<month;i++)
date=date+m[i];
date=date+day;
if(month>2 && (year%4==0&& year%100!=0 || year%400==0 ))
date++;
printf("%d\n",date);
return 0;
}
0.0分
0 人评分
字符串的输入输出处理 (C语言代码)浏览:711 |
C语言训练-最大数问题 (C语言代码)浏览:648 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:895 |
数组输出 (C语言代码)浏览:749 |
1052题解(链表操作)浏览:782 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:604 |
A+B for Input-Output Practice (III) (C语言代码)浏览:455 |
C二级辅导-温度转换 (C语言代码)浏览:575 |
明明的随机数 (C语言代码)浏览:965 |
简单的a+b (C语言代码)浏览:691 |