#7264: 狂RF,但是用DEV C++卻OK


WeiFong (WeiFong)

學校 : 不指定學校
編號 : 29322
來源 : [120.118.1.123]
最後登入時間 :
2013-01-03 22:16:04
a004. 文文的求婚 | From: [140.127.186.49] | 發表日期 : 2012-12-04 23:36

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    int a;
    
    while (cin>>a){
    
    if(a%4==0 && a%100!=0)
    
    cout<<"閏年";
    
    else if(a%400==0)
    
    cout << "閏年";
    
    else
    
    cout << "平年"; 
    
    cout<<endl; 
    }
    system("PAUSE");
    return EXIT_SUCCESS;
}

 
#7265: Re:狂RF,但是用DEV C++卻OK


linishan (L)

學校 : 國立交通大學
編號 : 1090
來源 : [104.132.150.102]
最後登入時間 :
2019-05-10 19:57:54
a004. 文文的求婚 | From: [140.113.248.131] | 發表日期 : 2012-12-05 02:11

#include
#include

using namespace std;

int main(int argc, char *argv[])
{
    int a;
    
    while (cin>>a){
    
    if(a%4==0 && a%100!=0)
    
    cout<<"閏年";
    
    else if(a%400==0)
    
    cout << "閏年";
    
    else
    
    cout << "平年"; 
    
    cout<
    }
    system("PAUSE");
    return EXIT_SUCCESS;
}
 
 
別用建新專案的方式 程式碼自己打 
 
ZeroJudge Forum