计算该日在本年中是第几天

问题及代码:

/*计算机与控制工程学院。
文件名称:定义一个结构体变量(包括年、月、日)。编写一个函数days,由主函数将年、月、日传递给函数days,计算出该日在本年中是第几天并将结果传回主函数输出。
输入描述:年月日
输出描述:当年第几天
完成日期:2016年4月24
作者:马艳艳*/
#include 
using namespace std;
struct y_m_d
{
    int year;
   int month;
    int day;
};
int days(struct y_m_d date)
{
     int M[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
  int i,sum=0;

  if((date.year%4==0&&date.year%100!=0)||date.year%400==0)
  {
     M[2]=29;
  }
  for(i=0,sum=0;i>date.year>>date.month>>date.day;
    day_sum=days(date);
    cout<

计算该日在本年中是第几天_第1张图片

运行结果:

计算该日在本年中是第几天_第2张图片

你可能感兴趣的:(c++)