×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#8787: 請教哪裡出錯
CSE210608
(想像天然(C++))
學校 : 國立臺中高級工業職業學校
編號 : 37494
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [101.9.113.197]
最後登入時間 :
2023-05-17 21:51:31
d047.
10070 - Leap Year or Not Leap Year and ...
--
UVa
10070
| From: [210.70.75.126] | 發表日期 : 2014-04-29 15:09
#include<iostream>
using namespace std;
int main()
{
long long int y,a,b;
while(cin >> y){
b=0;
if (y%400==0 || y%100!=0 && y%4==0){
cout << "This is leap year.\n" ;
a=1;
b=1;}
if (y%15==0){
cout << "This is huluculu festival year.\n" ;
b=1;}
if (y%55==0 && a==1){
cout << "This is bulukulu festival year.\n" ;
b=1;}
else if (b!=1){
cout << "This is an ordinary year.\n" ;}
}
return 0;
}
Detail
close
WA
(line:7)
輸出短少
您共輸出 6 行。
#12348: Re:請教哪裡出錯
s571991@gmail.com
(cilegann chiu)
學校 : 不指定學校
編號 : 66926
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [180.204.80.66]
最後登入時間 :
2019-08-23 14:04:32
d047.
10070 - Leap Year or Not Leap Year and ...
--
UVa
10070
| From: [140.112.211.30] | 發表日期 : 2017-07-09 21:35
#include
using namespace std;
int main()
{
long long int y,a,b;
while(cin >> y){
b=0;
if (y%400==0 || y%100!=0 && y%4==0){
cout << "This is leap year.\n" ;
a=1;
b=1;}
if (y%15==0){
cout << "This is huluculu festival year.\n" ;
b=1;}
if (y%55==0 && a==1){
cout << "This is bulukulu festival year.\n" ;
b=1;}
else if (b!=1){
cout << "This is an ordinary year.\n" ;}
}
return 0;
}
Detail
close
WA
(line:7)
輸出短少
您共輸出 6 行。
這題是大數(超過long long範圍),不能用取餘運算子
ZeroJudge Forum