题目:本题要求编写程序计算某年某月某日是该年中的第几天。
源码:
#include <stdio.h>
int main(void)
{
int monthday[2][12]={
0}; //构建并初始化二维数组分别存放闰年(i为1)和平年(i为0)对应月份的天数
int i,j,year,month,day,sum_day = 0;
scanf("%d/%d/%d",&year,&month,
题目:本题要求编写程序计算某年某月某日是该年中的第几天。
源码:
#include <stdio.h>
int main(void)
{
int monthday[2][12]={
0}; //构建并初始化二维数组分别存放闰年(i为1)和平年(i为0)对应月份的天数
int i,j,year,month,day,sum_day = 0;
scanf("%d/%d/%d",&year,&month,