Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92709 蔡佳轩 12输出英文字母II C++ Compile Error 0 MS 0 KB 140 2024-10-06 11:36:04

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:5: error: expected ';' before '}' token
     }
     ^