#10036: 為啥一直WA????


simon87715 (早安)

學校 : 道明中學
編號 : 43054
來源 : [114.33.0.99]
最後登入時間 :
2019-12-26 15:09:12
a004. 文文的求婚 | From: [218.173.82.161] | 發表日期 : 2015-07-14 22:19

#include<iostream>
using namespace std;

int main()
{
    int a;
    cin>>a;
    if((a%400)==0)
    {
         cout<<"閏年"<<endl;
     }
    else{
                if((a%100)==0)
                      {cout<<"平年"<<endl;}
                else{
                          if((a%4)==0)
                           {cout<<"閏年"<<endl;}
                              else{cout << "平年"<<endl;}
                    }
        }
}
       

 
#12033: Re:為啥一直WA????


asd11020313 (unknown)

學校 : 國立聯合大學
編號 : 66183
來源 : [42.73.22.212]
最後登入時間 :
2017-05-16 12:29:43
a004. 文文的求婚 | From: [61.223.210.147] | 發表日期 : 2017-05-15 14:12

#include<iostream>

using namespace std;


int main()

{

   int a;

   while(cin>>a)

   {

 

   if((a%400)==0)

   {

        cout<<"閏年"<<endl;

    }

   else{

               if((a%100)==0)

                     {cout<<"平年"<<endl;}

               else{

                         if((a%4)==0)

                          {cout<<"閏年"<<endl;}

                             else{cout << "平年"<<endl;}

                   }

       }

   }

}
 
ZeroJudge Forum