Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5637 翟** 12输出英文字母II C++ Wrong Answer 0 MS 252 KB 194 2024-12-08 08:38:43

Tests(0/10):


Code:

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


Run Info:

------Input------
3 12
------Answer-----
c d e f g h i j k l
------Your output-----
3 4 5 6 7 8 9 10 11 12