Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150382 赵奕杰 12for循环练习III C++ Accepted 3 MS 260 KB 129 2026-03-27 19:36:33

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int n=1; int main(){ for(n;n<=100;n=n+2){ cout<<n<<endl; } return 0; }