Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
344975 王铖渝 【C2-7】输出n-m小写字母表 C++ 通过 100 3 MS 248 KB 158 2025-08-28 16:46:29

Tests(2/2):


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


测评信息: