Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116698 | 郭玉洁 | 100至200之间的所有素数 | C++ | Wrong Answer | 0 MS | 268 KB | 149 | 2025-04-12 12:47:57 |
#include<bits/stdc++.h> using namespace std; int main(){ int b,a; cin>>a>>b; if(a>b){ cout<<a; }else{ cout<<b; } 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-----
4826736