本帖最後由 洪勻蓁 於 2021-9-7 16:37 編輯
- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- int main()
- {
- int sum=0;
- 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}};
- int year, month, date;
- cout<<"請輸入年月日並以空格隔開: ";
- cin>>year>>month>>date;
- if(year%4==0 && year%100!=0 || year%400==0)
- {
- cout<<year<<"年為閏年"<<endl;
- for(int i=0;i<month-1;i++)
- {
- sum+=db[0][i];
- }
- sum+=date;
- }
- else
- {
- cout<<year<<"年為平年"<<endl;
- for(int i=0;i<month-1;i++)
- {
- sum+=db[1][i];
- }
- sum+=date;
- }
- cout<<"您輸入的日期為"<<year<<"年"<<month<<"月"<<date<<"日"<<",是這一年中第"<<sum<<"天"<<endl;
- system("pause");
- return 0;
- }
複製代碼 |