#28711: c++解


thelazysong0428@gmail.com (黃國風)

學校 : 不指定學校
編號 : 179137
來源 : [218.166.0.33]
最後登入時間 :
2022-01-03 18:55:55
a004. 文文的求婚 | From: [218.166.5.121] | 發表日期 : 2021-12-29 13:12

#include<iostream>

using namespace std;

int main()

{

int n;

while( cin >> n )

{

if ((n & 3) == 0 && ((n % 25) != 0 || (n & 12) == 0))   if((n%4==0)&&(n%100!=0)||(n%400==0))

cout<<"閏年"<<endl;   cout<<"閏年\n";

else

cout<<"平年"<<endl;  cout<<"平年\n";

}

return 0;

}

 
#28733: Re:c++解


thelazysong0428@gmail.com (黃國風)

學校 : 不指定學校
編號 : 179137
來源 : [218.166.0.33]
最後登入時間 :
2022-01-03 18:55:55
a004. 文文的求婚 | From: [218.166.5.121] | 發表日期 : 2021-12-29 13:39

#include

using namespace std;

int main()

{

int n;

while( cin >> n )

{

if ((n & 3) == 0 && ((n % 25) != 0 || (n & 12) == 0))   if((n%4==0)&&(n%100!=0)||(n%400==0))

cout<<"閏年"<<endl;   cout<<"閏年\n";

else

cout<<"平年"<<endl;  cout<<"平年\n";

}

return 0;

}

 

 

 

#include<stdio.h>

int main () {

int a;

while(scanf("%d",&a) != EOF) {

if ((a & 3) == 0 && ((a % 25) != 0 || (a & 12) == 0))

printf("閏年\n");

else

printf("平年\n");

}

return 0;

}

 

 

 



 
ZeroJudge Forum