Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107605 | 周子潇 | 12for循环练习III | C++ | Accepted | 1 MS | 260 KB | 193 | 2025-01-18 10:37:17 |
#include<iostream> using namespace std; int main(){ int i=1; for(i;i<=100;i++) { if(i%2!=0) { cout<<i<<' '; } } return 0; }