喜狼狼


私信TA

用户名:uq_35565149237

访问量:307

签 名:

入秋,天寒,添衣,勿病。

等  级
排  名 5084
经  验 1597
参赛次数 0
文章发表 6
年  龄 19
在职情况 学生
学  校
专  业 计算机

  自我简介:

TA的其他文章

判断第几天C++
浏览:13

解题思路:

注意事项:

参考代码:

#include<iostream>

using namespace std;


bool IsLeapYear(int year)//用来判断是否是闰年

{

     if (year % 4 == 0 && year % 100 != 0)

     return true;

     else if (year % 400 == 0)

     return true;

     else

     return false;

}


int main()

{

     int year, month, day;

     char one, two;

     int num = 0;

     while(cin >> year >> one >> month >> two >> day)题目中介绍到会有多组数据

     {

         if (IsLeapYear(year) == true)//闰年的情况

         {

             int x = 0;

             while (x != month)

             {

             if (x == 1 || x == 3 || x == 5 || x == 7 || x == 8 || x == 10)

             num += 31;

             else if (x == 2)

             num += 29;

             else if (x == 0)

             num += 0;

             else

             num += 30;

             x++;

             }

         }

         else//非闰年的情况

         {

             int x = 0;

             while (x != month)

             {

                 if (x == 1 || x == 3 || x == 5 || x == 7 || x == 8 || x == 10)

                 num += 31;

                 else if (x == 2)

                 num += 28;

                 else if (x == 0)

                 num += 0;

                 else

                 num += 30;

                 x++;

             }

     }

     cout << num + day << endl;

     }

     return 0;

    }


 

0.0分

0 人评分

  评论区

  • «
  • »