| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130241 | 万嘉宇 | 12输出英文字母II | C++ | Accepted | 2 MS | 276 KB | 364 | 2025-09-09 19:17:19 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int j,i; cin>>i>>j; for(char c=i+96,d=j+96;c<=d;c++){ cout<<c<<" "; } return 0; }