#6221: 各位高手請幫我看看哪裡出錯了,感謝!


brouille (Reno)

學校 : 國立臺中女子高級中學
編號 : 21588
來源 : [123.193.66.72]
最後登入時間 :
2016-10-11 08:29:30
a007. 判斷質數 | From: [114.26.187.25] | 發表日期 : 2012-01-01 12:29

#include <cstdlib>
#include <iostream>
#include <iomanip>
#include <cmath>

using namespace std;

int main(int argc, char *argv[])
{
    long long int a, i, s;
    cin >> a ;    
    s=0;     
    for (i=2; i<=a/2; i++)
    {s++;
    if(a%i==0){cout << "非質數" << endl;break;}
   
        }
     if(s=a/2-1)cout << "質數" << endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

 
ZeroJudge Forum