#4558: WA 錯在哪裡??


crazylove0327 (狂)

學校 : 國防大學理工學院
編號 : 13494
來源 : [140.132.34.51]
最後登入時間 :
2013-04-25 20:56:25
a007. 判斷質數 | From: [140.132.27.170] | 發表日期 : 2010-11-17 09:16

 

 

 

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

int main(){
    int a,b;
    while(cin>>a){
        if(a==1){
            cout<<"非質數"<<endl;}
        else if(a==2){
            cout<<"質數"<<endl;}
        else{
            for(b=2;b<=sqrt(a);b++)
            {
            if(a%b==0){
                cout<<"非質數"<<endl;
                break;}
            }
        }
    }
    return 0;
}

 

 

 
ZeroJudge Forum