C语言——日期转换为天数

问题描述

编写一个程序,用户输入年月日,显示该日是该年的第几天。

代码

#include 
struct when
{
	int year;
	int month;
	int day;
};
int days(struct when date)
{
	int m[]={31,28,31,30,31,30,31,31,30,31,30,31};
	int i,day=0;
	if(date.year%4==0)
	{m[1]=29;}
	for(i=0;i

你可能感兴趣的:(C语言,c语言,开发语言)