Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
148784 | 陈峘宇 | 判断质数 | C++ | 输出超限 | 0 | 1 MS | 240 KB | 220 | 2024-05-25 14:48:39 |
#include<iostream> #include<cstdio> using namespace std; int main() { int n,a,b; cin>>n; for (int a;a>=1;a++) if(n%a==0){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }