| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 137096 | 王安安 | 12输出英文字母II | C++ | Compile Error | 0 MS | 0 KB | 146 | 2025-11-16 11:08:32 |
#include<bits/stdc++.h> using namespace std; int main(){ cin>>n>>m; for(int i=n;i<=m;i++){ cout<<char('a'-1+i)<<" "; } return 0; }
Main.cc: In function 'int main()':
Main.cc:4:7: error: 'n' was not declared in this scope
cin>>n>>m;
^
Main.cc:4:10: error: 'm' was not declared in this scope
cin>>n>>m;
^