Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101604 冯瀚翔 12for循环练习III C++ Accepted 2 MS 264 KB 153 2024-12-15 15:16:31

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { for (int k=1; k<=100; k=k+2) { cout<<k<<endl; } return 0; }