返回列表 發帖
  1.     #include<iostream>
  2.     #include<cstdlib>
  3.     using namespace std;  
  4.     int main()  
  5.     {  
  6.         int y,m,d,total=0,i;  
  7.         int db[2][12]={{31,28,31,30,31,30,31,31,30,31,30,31},{31,29,31,30,31,30,31,31,30,31,30,31}};  
  8.         cout<<"請輸入年月日並以空格分隔:";  
  9.         cin>>y>>m>>d;   
  10.         if((y%4==0&&y%100!=0)||(y%400==0))  
  11.         {  
  12.             cout<<y<<"年是閏年"<<endl;
  13.             for(i=0;i<m-1;i++)  
  14.             {  
  15.                   total+=db[1][i];        
  16.             }  
  17.         }else  
  18.         {  
  19.              cout<<y<<"年是平年"<<endl;
  20.              for(i=0;i<m-1;i++)  
  21.              {  
  22.                   total+=db[0][i];  
  23.              }  
  24.         }  
  25.         total+=d;  
  26.         cout<<"您輸入的日期"<<y<<"年"<<m<<"月"<<d<<"日,"<<"是這一年中的第"<<total<<"天\n";
  27.         system("pause");
  28.         return 0;   
  29.     }  
複製代碼
May

TOP

返回列表