Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3479 | 杨洋杰 | 100至200之间的所有素数 | C++ | Wrong Answer | 0 MS | 256 KB | 231 | 2024-06-08 17:39:57 |
#include<iostream> using namespace std; int main(){ int a[21]={101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,197,199}; for(int i=0;i<20;i++){ cout<<a[i]<<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-----
101 103 107 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 197 199