Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100885 刘国平 12输出英文字母II C++ Accepted 1 MS 272 KB 225 2024-12-14 11:15:59

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { //字母是什么数据类型?字符型char int n,m; cin>>n>>m; char xx; for(xx='a'+n-1;xx<='a'+m-1;xx++){ cout<<xx<<" "; } return 0; }