Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
41023 | liusiyu | 输出N以内的素数 | C++ | 输出超限 | 45 MS | 240 KB | 210 | 2024-02-18 16:23:23 |
#include<bits/stdc++.h> using namespace std; int main() { int m; cin>>m; cout<<2<<endl<<3<<endl; for(int j=4;j<=m;j++){ if(j%2!=0&&j%3!=0&&j%10!=0){ cout<<j<<endl; } } return 0; }