Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
31055 | diandian | 输出N以内的素数 | C++ | 通过 | 32 MS | 240 KB | 324 | 2023-11-13 21:10:16 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; for (int i = 2; i <= n; ++ i) { bool f = true; for (int j = 2; j < i; ++ j) { if (i % j == 0) f = false; } if (f == true) cout << i << '\n'; } return 0; }