L1-028 判断素数 (10 分)
Posted chn-tiancx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了L1-028 判断素数 (10 分)相关的知识,希望对你有一定的参考价值。
对于这道题还是很简单的,思路如下:
要判断 x 是否是质数,我们可以从2遍历到sqrt(x) ,若之间有数可以整除x,那么x就不是质数,否者就是。 需要记住 x为1 时要特判断 1不是质数。
代码如下:
#include<bits/stdc++.h>
using namespace std;
int f(long long x){
if(x==1) return 0;
for(int i=2;i<=sqrt(x);i++){
if(x%i==0) return 0;
}
return 1;
}
int main(){
long long n; cin>>n;
for(int i=0;i<n;i++){
long long x; cin>>x;
if(f(x)) cout<<"Yes";
else cout<<"No";cout<<endl;
}
return 0;
}
本文来自博客园,作者:chn-tiancx,转载请注明原文链接:https://www.cnblogs.com/tiancx/p/15358773.html
以上是关于L1-028 判断素数 (10 分)的主要内容,如果未能解决你的问题,请参考以下文章