| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 366216 | admin_rjp | 【C2-1】n到m之间的所有整数 | C++ | Accepted | 100 | 2 MS | 240 KB | 160 | 2025-12-06 16:32:18 |
#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; int i=n+1; while(i<m){ cout<<i<<endl; i++; } return 0; }