Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130239 杨启宏 12输出英文字母II C++ Accepted 1 MS 272 KB 394 2025-09-09 19:04:14

Tests(10/10):


Code:

#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 i,j; char k; cin>>i>>j; for(k='a'+i-1;k<='a'+j-1;k++){ cout<<k<<' '; } cout<<endl; return 0; }