| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 112050 | 刘子锐 | 100至200之间的所有素数 | C++ | Wrong Answer | 1 MS | 272 KB | 283 | 2025-03-08 12:53:44 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int flag = 0; for (int i = 2; i < n; i++) { if (n % 1 == 0) { flag = 1; break; } } if (flag == 1) { cout << "no" << endl; } else { cout << "yes" << endl; } return 0; }
------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-----
yes