Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
353814 | 胡珂 | 【C2-1】n到m之间的所有整数 | C++ | Accepted | 100 | 2 MS | 236 KB | 146 | 2025-10-01 12:27:57 |
#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; }