Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103874 | 任艺宸 | 12输出英文字母II | C++ | Accepted | 1 MS | 272 KB | 385 | 2024-12-30 15:45:20 |
#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 n,m; char x; cin>>n>>m; for(x='a'+(n-1);x<='a'+(m-1);x++){ cout<<x<<" "; } return 0; }