Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123737 陈华仁星 12for循环练习II C++ Accepted 1 MS 204 KB 182 2025-07-10 11:38:48

Tests(10/10):


Code:

#include <cstdio> using namespace std; int main() { int i,j; scanf("%d%d",&i,&j); for(int k=i;k<=j;k++) { printf("%d\n",k); } return 0; }