题解 | #素数判定#

素数判定

https://www.nowcoder.com/practice/5fd9c28b1ce746dd99287a04d8fa9002

#include <iostream>
#include<string>
#include<math.h>
using namespace std;

int main()
{
    int a,tag=false;
    string str;
    while(scanf("%d",&a)!=EOF){
            tag=false;
    if(a<=1){
        tag=true;
    }
    if(a==2||a==3){
       tag=false;
    }
        for(int i=2;i<=(int)sqrt(a);i++){
            if(a%i==0) tag=true;
        }
        if(tag==true){
            cout<<"no"<<endl;
        }else{
            cout<<"yes"<<endl;
        }
    }
    return 0;
}

全部评论

相关推荐

我即大橘:耐泡王
点赞 评论 收藏
分享
11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务