#15063: 一直有問題


adenpiercehack@gmail.com (Chicago Ctos)

學校 : 不指定學校
編號 : 83169
來源 : []
最後登入時間 :
2018-09-04 09:09:29
a002. 簡易加法 | From: [111.248.15.114] | 發表日期 : 2018-09-09 13:21

#include <iostream>
#include <cmath>
using namespace std;

int main() {
int M;
int D;
int S ;
for (size_t i = 0; i < 2; i++)
{
cin >> M;
cin >> D;
S = (M * 2 + D) % 3;
if (S == 0)
cout << "普通" << endl;
else if (S == 1)
cout << "吉" << endl;
else
cout << "大吉" << endl;
}


system("pause");
return 0;
}

請問這樣為什麼跑測試為AC但送出答案卻是N/A?

是語法有問題還是基礎錯誤?

請各位大神給個解惑

還有遇上一次輸入兩組數字要如何處理,請一便告訴我,感謝

 
#15084: Re:一直有問題


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
a002. 簡易加法 | From: [203.72.178.252] | 發表日期 : 2018-09-10 11:16

#include <iostream>
#include <cmath>
using namespace std;

int main() {
int M;
int D;
int S ;
while(cin>>M>>D)
{

S = (M * 2 + D) % 3;
if (S == 0)
cout << "普通" << endl;
else if (S == 1)
cout << "吉" << endl;
else
cout << "大吉" << endl;
}
return 0;
}




 
#15165: Re:一直有問題


ufve0704 (爬 我爬 我爬爬爬 有排行榜這種東西就是要爬 爬過我上面的那...)

學校 : 臺北市私立延平高級中學
編號 : 83268
來源 : [203.72.178.1]
最後登入時間 :
2023-10-30 13:02:50
a002. 簡易加法 | From: [114.42.221.218] | 發表日期 : 2018-09-16 21:02

#include
#include
using namespace std;

int main() {
int M;
int D;
int S ;
while(cin>>M>>D)
{

S = (M * 2 + D) % 3;
if (S == 0)
cout << "普通" << endl;
else if (S == 1)
cout << "吉" << endl;
else
cout << "大吉" << endl;
}
return 0;
}

明明是a003你為何打a002?







 
ZeroJudge Forum