题解 | #素数判定#

素数判定

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

#include <bits/stdc++.h>
#include <cmath>
using namespace std;

int main(){
    int x;
    cin >> x;
    if(x < 2) cout << "no" << endl;
    else {
        for(int i = 2 ; i<=sqrt(x);i++){
            if(x % i == 0) {
                cout << "no" << endl;
                return 0;
            }
        }
        cout << "yes" << endl;
    }
}

全部评论

相关推荐

爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
狠赚笔第一人:学计算机自己不努力怪大环境?我大一就拿到了美团大厂的offer,好好看看自己有没有努力查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务