| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 126816 | 周琨智 | 100至200之间的所有素数 | C++ | Wrong Answer | 0 MS | 256 KB | 261 | 2025-07-22 11:07:13 |
#include<bits/stdc++.h> using namespace std; int main() { for (int i = 100; i <= 200; i++) { int x = 0; for (int j = 2; j <= 200 - 1; j++) { if (i % j == 0) { x++; } } if (x == 0) { cout << i << endl; } } }
------Input------
0
------Answer-----
101 103 107 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 193 197 199
------Your output-----