| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150385 | 赵奕杰 | 12输出英文字母II | C++ | Wrong Answer | 1 MS | 268 KB | 145 | 2026-03-27 19:52:41 |
#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; }
------Input------
4 23
------Answer-----
d e f g h i j k l m n o p q r s t u v w
------Your output-----
defghijklmnopqrstuvw