#23386: _ans


ce5324 (伃)


#include <iostream>

using namespace std;

int main(){

int y;

cin>>y;

if(y%4==0&&y%100!=0||y%400==0)

cout<<"a leap year"<<endl;

else

cout<<"a normal year"<<endl;

        return 0;

}

 

#23597: Re:ans


mark0516 (鐵木真)


#include

using namespace std;

int main(){

int y;

cin>>y;

if(y%4==0&&y%100!=0||y%400==0)

cout<<"a leap year"<<endl;

else

cout<<"a normal year"<<endl;

        return 0;

}

 


感謝

#27287: Re:ans


yp11051007 (803-19)


#include

using namespace std;

int main(){

int y;

cin>>y;

if(y%4==0&&y%100!=0||y%400==0)

cout<<"a leap year"<<endl;

else

cout<<"a normal year"<<endl;

        return 0;

}

 


謝謝