本题要求编写程序计算某年某月某日是该年中的第几天。
输入在一行中按照格式“yyyy/mm/dd”(即“年/月/日”)给出日期。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。闰年的2月有29天。
在一行输出日期是该年中的第几天。
2009/03/02
结尾无空行
61
结尾无空行
2000/03/02
62
#include<stdio.h> int main() { int y,m,d,s=0; scanf("%d/%d/%d",&y,&m,&d); int a[12]={31,28,31,30,31,30,31,31,30,31,30,31}; int b[12]={31,29,31,30,31,30,31,31,30,31,30,31}; if((y%4==0&&y%100!=0)||y%400==0) { for(int i=0;i<m-1;i++) { s=s+b[i]; } printf("%d",s+d); } else { for(int i=0;i<m-1;i++) { s=s+a[i]; } printf("%d",s+d); } return 0; }