Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
353801 | 胡珂 | 【C2-1】n到m之间的所有整数 | C++ | Accepted | 100 | 0 MS | 244 KB | 146 | 2025-10-01 12:27:55 |
#include <bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; for(int i=n+1;i<m;i++){ cout<<i<<endl; } return 0; }