判断质数
#include <iostream>
#include <algorithm>
using namespace std;
bool is_prime(int x)
{
if (x < 2) return false;
for (int i = 2; i <= x / i; i ++ )
{
if (x % i == 0) return false;
}
return true;
}
int main()
{
int n;
cin >> n;
while (n -- )
{
int x;
cin >> x;
if (is_prime(x)) puts("Yes");
else puts("No");
}
return 0;
}
姐姐哪年的?
姐姐是哪里人,好想要姐姐微信~
姐姐2003年的哦,弟弟多大了呢
姐姐最棒了!
姐姐是哪里人,好想要姐姐微信~
18234213205