运行 ID 作者 题号 测评结果 分数 时间 内存 语言 代码长度 提交时间
635890 Ashh 1003 - 字符转换 编译错误 0 0 MS 0 KB C++ 223 26天前
暂时无法获取本题测试点详情。

Main.cc:6:17: warning: missing terminating ' character
6 | if(c>='a'&&c<='z) cout<<toupper(c)<<endl;
| ^
Main.cc:6:17: error: missing terminating ' character
6 | if(c>='a'&&c<='z) cout<<toupper(c)<<endl;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.cc: In function 'int main()':
Main.cc:6:6: warning: init-statement in selection statements only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
6 | if(c>='a'&&c<='z) cout<<toupper(c)<<endl;
| ^
Main.cc:7:3: error: expected primary-expression before 'else'
7 | else if(c>='A'&&c<='Z')cout<<tolower(c)<<endl;
| ^~~~
Main.cc:8:3: error: expected primary-expression before 'else'
8 | else{
| ^~~~
Main.cc:7:49: error: expected ')' before 'else'
7 | else if(c>='A'&&c<='Z')cout<<tolower(c)<<endl;
| ^
| )
8 | else{
| ~~~~
Main.cc:6:5: note: to match this '('
6 | if(c>='a'&&c<='z) cout<<toupper(c)<<endl;
| ^
Main.cc:13:1: error: expected primary-expression before '}' token
13 | }
| ^