文章
105
粉丝
69
获赞
117
访问
56.8k
#include <bits/stdc++.h>
using namespace std;
int n;
bool cheak(int x)
{
if(x <= 0 || x == 1) return false;
for(int i = 2; i <= n / i; i ++)
if(x % i == 0) return false;
return true;
}
int main()
{
while(cin >> n)
{
if(cheak(n)) cout << "yes" << endl;
else cout << "no" << endl;
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发