Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
340835 陈信宇 【C2-1】n到m之间的所有整数 C++ 通过 100 2 MS 252 KB 148 2025-08-15 14:24:01

Tests(1/1):


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


测评信息: