Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46094 | liusiyu | 判断一个数是否为质数 | C++ | 通过 | 0 MS | 236 KB | 225 | 2024-04-24 21:03:46 |
#include<bits/stdc++.h> using namespace std; bool pd(int x){ for(int i=2;i*i<=x;i++){ if(x%i==0) return 0; } return 1; } int main() { int n; cin>>n; if(pd(n)) cout<<"yes"; else cout<<"no"; return 0; }