×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#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