Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100910 金昱帆 12输出英文字母II C++ Accepted 0 MS 276 KB 165 2024-12-14 11:27:49

Tests(10/10):


Code:

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