Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
110809 | 王镜铭 | 100至200之间的所有素数 | C++ | Wrong Answer | 0 MS | 260 KB | 150 | 2025-02-23 13:28:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=100; while(a==198){ a=a+2; cout<<a; } 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-----