Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140569 芦睿霖 12for循环练习I C++ Accepted 2 MS 272 KB 162 2025-12-16 21:09:36

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; }