Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58514 | littletwleve | 判断一个数是否为质数 | C++ | 通过 | 0 MS | 256 KB | 283 | 2024-12-12 15:10:53 |
#include<bits/stdc++.h> using namespace std; bool p(int n){ bool f=1; if(n==2) return f; else{ for(int i=2;i<=sqrt(n);i++){ if(n%i==0){ f=0; continue; } } } return f; } int main(){ int n; cin>>n; if(p(n)) cout<<"yes"; else cout<<"no"; }