Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
57560 | lixinyu | 判断一个数是否为质数 | C++ | 通过 | 0 MS | 244 KB | 212 | 2024-11-24 14:06:50 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n=1; cin>>a; for(int i=2;i<a;i++){ if(a%i==0){ n=i; break; } } if(n==1) cout<<"yes"; else cout<<"no"; return 0; }