Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100911 刘明沅 12输出英文字母II C++ Accepted 1 MS 276 KB 173 2024-12-14 11:27:55

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char n; int x,y; cin>>x>>y; for(n='a'+x-1;n<='a'+y-1;n++){ cout<<n<<" "; } return 0; }