Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92655 刘佳宇 12for循环练习I C++ Wrong Answer 1 MS 260 KB 126 2024-10-06 10:51:12

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ for(int n=1;n<=5;n++){ cout<<n<<endl; } }


Run Info:

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