Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130323 李茗宇 12输出英文字母II C++ Accepted 1 MS 272 KB 383 2025-09-10 20:08:36

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