#6655: WA 輸出短少


cla22006 (AFU)

學校 : 中原大學
編號 : 24531
來源 : [111.249.61.134]
最後登入時間 :
2013-03-06 10:59:52
a004. 文文的求婚 | From: [140.135.26.149] | 發表日期 : 2012-05-24 21:13

#include <iostream>
using namespace std;

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

我哪裡錯了,一直WA?

 
ZeroJudge Forum