Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98301 | 黄芃硕 | 12for循环练习III | C++ | Accepted | 0 MS | 260 KB | 163 | 2024-11-18 18:10:56 |
#include<iostream> using namespace std; int main() { int i,j; for(int l=1;l<=100;l++) { if(l%2==1){ cout<<l<<" "; } } return 0; }