#P2571. 判断质数2
判断质数2
Description
给定一个正整数,判断是否为质数。
Format
Input
第一行包含一个整数,代表测试用例的数量。
每个测试用例包含一个整数,代表需要进行判断的数字。
Output
如果为质数,输出"Yes";否则输出"No"。
Samples
3
1
7
4
No
Yes
No
Hint
本题输入输出较多,请使用比较快的输入输出方式。
以下模板仅供参考:
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
int main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int x;
cin>>x;
cout<<x<<endl;
return 0;
}