返回列表 發帖
本帖最後由 洪勻蓁 於 2021-9-7 16:37 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. int main()
  6. {
  7.     int sum=0;
  8.     int db[2][12]={{31,29,31,30,31,30,31,31,30,31,30,31},{31,28,31,30,31,30,31,31,30,31,30,31}};
  9.     int year, month, date;
  10.     cout<<"請輸入年月日並以空格隔開: ";
  11.     cin>>year>>month>>date;
  12.     if(year%4==0 && year%100!=0 || year%400==0)
  13.        {
  14.          cout<<year<<"年為閏年"<<endl;  
  15.          for(int i=0;i<month-1;i++)
  16.          {
  17.             sum+=db[0][i];
  18.          }
  19.          sum+=date;
  20.        }
  21.     else
  22.        {
  23.          cout<<year<<"年為平年"<<endl;
  24.          for(int i=0;i<month-1;i++)
  25.          {
  26.             sum+=db[1][i];
  27.          }
  28.          sum+=date;
  29.        }  
  30.      cout<<"您輸入的日期為"<<year<<"年"<<month<<"月"<<date<<"日"<<",是這一年中第"<<sum<<"天"<<endl;
  31.     system("pause");
  32.     return 0;   
  33. }
複製代碼

TOP

返回列表