Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150386 赵奕杰 12输出英文字母II C++ Accepted 1 MS 268 KB 150 2026-03-27 19:53:05

Tests(10/10):


Code:

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