初學者程式設計之路
緩慢努力中~( ゚▽゚)/
2018年5月12日 星期六
itsa基 8 質數判別
#include <iostream>
using namespace std;
int main ()
{
int n,a,ans;
cin >> n;
ans = 1;
a = 2;
while (a < n)
{
if (n % a == 0)
{
ans = 0;
}
a++;
}
if (ans == 1)
{
cout << "YES" << endl;
}
else
{
cout << "NO" << endl;
}
return 0;
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言