Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150633 邓弘锐 12for循环练习II C++ Accepted 5 MS 272 KB 149 2026-03-29 14:46:11

Tests(10/10):


Code:

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