#9559: 为什么这个程序不行?


yangty (yty)

學校 : 不指定學校
編號 : 44969
來源 : [117.60.39.108]
最後登入時間 :
2015-01-31 22:25:18
a004. 文文的求婚 | From: [58.213.51.38] | 發表日期 : 2014-12-23 16:18

#include<iostream.h>
int main()
{
int a;
char t;
cin >> a;
  if (a % 400 == 0) t='閏年';
    else
      if (a % 4 == 0 && a % 100 != 0) t='閏年';
 else
   t='平年';
cout << t;
#9565: Re:为什么这个程序不行?


28984048 (chi)

學校 : 臺北市私立再興中學
編號 : 46326
來源 : [49.216.55.253]
最後登入時間 :
2022-05-04 08:11:22
a004. 文文的求婚 | From: [163.20.177.14] | 發表日期 : 2014-12-26 22:03

#include <iostream>

int pd (int in0){
    
    if (in0 %400 ==0 )
       return 1 ;
    else if (in0 %100 ==0 )
         return 0 ;
    else if (in0 %4 ==0 )
         return 1 ;
    else 
         return 0 ;
}

using namespace std;

int main()
{
    int in0, out;
    
    while (cin >>in0 ){
          
          cout <<(pd(in0)==1 ?"閏年" :"平年" ) <<endl ;
    }

}



 
#9566: Re:为什么这个程序不行?


tonyhsueh2002a (TAT(安安非他命))

學校 : 新北市私立時雨高級中學
編號 : 45239
來源 : [163.20.177.14]
最後登入時間 :
2015-01-06 21:43:41
a004. 文文的求婚 | From: [163.20.177.14] | 發表日期 : 2014-12-26 22:09

#include <iostream>

int pd (int in0){
    
    if (in0 %400 ==0 )
       return 1 ;
    else if (in0 %100 ==0 )
         return 0 ;
    else if (in0 %4 ==0 )
         return 1 ;
    else 
         return 0 ;
}

using namespace std;

int main()
{
    int in0, out;
    
    while (cin >>in0 ){
          
          cout <<(pd(in0)==1 ?"閏年" :"平年" ) <<endl ;
    }

}
 





 
ZeroJudge Forum