Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91948 石水生 12for循环练习III C++ Accepted 3 MS 260 KB 147 2024-09-26 10:57:25

Tests(1/1):


Code:

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