Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
128918 | 李鸿文添 | 12for循环练习II | C++ | Accepted | 6 MS | 272 KB | 450 | 2025-08-20 20:24:42 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset09 #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int i,a,b; cin>>a>>b; for(i=a;i<=b;i++){ cout<<i<<endl; } return 0; }