...
2023-08-18 13:54:03
发布于:广东
2阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int sushu(int x){
if(x == 1) return false;
for(int i = 2;i * i <= x;i++) if(x % 2 == 0) return false;
return true;
}
int main(){
int n;
cin >> n;
if(sushu(n)) cout << "Yes";
else cout << "No";
return 0;
}
这里空空如也
有帮助,赞一个