#26234: 為何Wa


10931463@gafe.cksh.tp.edu.tw (凱廷陳)

學校 : 臺北市立成功高級中學
編號 : 156157
來源 : [61.64.7.78]
最後登入時間 :
2023-11-27 01:09:33
d124. 3的倍数 | From: [61.64.4.99] | 發表日期 : 2021-07-25 22:50

#include <iostream>

#include <cstdlib>

using namespace std;

int main()

{

   int a;

   while(cin>>a){

    if(a%3==0)

    cout << "yes"<<endl;

   

    else

    cout << "no"<<endl;

   

   } 

 

   //system("pause");

   return 0;

}

 

 
#26236: Re:為何Wa


chuan53 (eggMan)

學校 : 臺北市私立薇閣高級中學
編號 : 90787
來源 : [140.112.24.187]
最後登入時間 :
2023-10-31 17:19:37
d124. 3的倍数 | From: [220.136.88.191] | 發表日期 : 2021-07-25 23:24

因為題目說數字超大,有10000位。用int不可能存的著(long long int 也不行)
應該用string把它當字串處理之類的。判斷3的倍數也不只用%

你可以看看其他的解題報告

 
ZeroJudge Forum