Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
56402 | shtest | 输出N以内的素数 | C++ | 通过 | 21 MS | 248 KB | 363 | 2024-11-11 20:55:03 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n>=2) cout<<"2"<<endl; if(n>=3) cout<<"3"<<endl; for(int i=2; i<=n; i++) { int k=sqrt(i); for(int j=2; j<=k; j++) { int m=i%j; if(m==0) break; else if(j==k) cout<<i<<endl; } } return 0; }