解题思路:
注意事项:
参考代码:
#include <stdio.h>
struct date
{
int year;
int month;
int day;
};
int Nowday(struct date Date)
{
int sum = 0;
int i;
int a[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
if((Date.year % 4 == 0 && Date.year % 100 != 0) || Date.year % 400 == 0)
{
a[1] = 29;
}
for(i = 0; i < Date.month - 1; i++)
{
sum += a[i];
}
sum += Date.day;
return sum;
}
int main()
{
struct date nowdate;
scanf("%d%d%d", &nowdate.year, &nowdate.month, &nowdate.day);
printf("%d", Nowday(nowdate));
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
【亲和数】 (C语言代码)浏览:588 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:1555 |
不容易系列 (C语言代码)浏览:702 |
人见人爱A+B (C语言代码)浏览:663 |
这可能是一个假的冒泡法浏览:1071 |
【简单计算】 (C语言代码)浏览:642 |
字符逆序 (C语言代码)浏览:706 |
printf基础练习2 (C语言代码)浏览:653 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:654 |