Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123782 王金檐 12输出英文字母II C++ Accepted 1 MS 272 KB 162 2025-07-10 11:57:30

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int n,m; cin>>n>>m; n+=96; m+=96; for(int i=n;i<=m;i++){ cout<<char(i)<<" "; } return 0; }