| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 138645 | 曾钰涵 | 08大小写转换 | C++ | Compile Error | 0 MS | 0 KB | 196 | 2025-11-29 12:15:09 |
#include<iostream> using namespace std; int main(){ char c; cin>>c; if('A'<=c)&&(c<='Z') c=c+32; else c=c-32; cout<<c<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:6:17: error: expected identifier before '(' token
if('A'<=c)&&(c<='Z')
^