Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
98913 | 蔡胤泽 | 12for循环练习II | C++ | Accepted | 1 MS | 200 KB | 174 | 2024-11-23 17:32:00 |
#include <stdio.h> int main() { int a, b; scanf("%d%d", &a, &b); int p = 0; for(int i = a;i < b + 1;i ++) { printf("%d\n", i); } return 0; }