Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
118534 鲁博睿 12for循环练习I C++ Wrong Answer 1 MS 260 KB 135 2025-05-04 15:48:30

Tests(0/10):


Code:

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


Run Info:

------Input------
4
------Answer-----
1 2 3 4
------Your output-----
1 2 3 4 5