Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137506 芦睿霖 12for循环练习I C++ Accepted 5 MS 272 KB 160 2025-11-18 15:51:16

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int n; cin>>n; int i=1; while (i<=n){ cout<< i << endl; i++; } return 0; }