#8564: 請教各位高手~~問題何在?


CSE210608 (想像天然(C++))

學校 : 國立臺中高級工業職業學校
編號 : 37494
來源 : [101.9.113.197]
最後登入時間 :
2023-05-17 21:51:31
d124. 3的倍数 | From: [106.104.37.244] | 發表日期 : 2014-01-22 18:31

#include<iostream> 
using namespace std;
int main()
{
    int n;
    while(cin >> n ){
        if(n%3==0)  cout << "yes" ;
        else  cout << "no" ; 
        cout << endl ;
    }
    return 0;
}

 
#8575: Re:請教各位高手~~問題何在?


dibery (Bor)

學校 : 政治大學
編號 : 23441
來源 : [119.14.19.119]
最後登入時間 :
2016-04-07 01:20:18
d124. 3的倍数 | From: [1.171.113.155] | 發表日期 : 2014-01-26 00:52

Use bignum to solve this problem.

int is not big enough, with its maximum value 2^31-1.

 
ZeroJudge Forum