Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
307157 丁虞轩 【C2-1】n到m之间的所有整数 C++ 解答错误 0 1 MS 244 KB 201 2025-01-01 11:31:44

Tests(0/1):


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


测评信息: