| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145961 | 潘明泽 | 08大小写转换 | C++ | Compile Error | 0 MS | 0 KB | 216 | 2026-01-25 20:00:40 |
#include<bits/stdc++.h> using namespace std; char n; int main(){ cin>>n; if(n>=65&&n<=90){ cout<<(char)(n+32); } if(n>=97&&n<=122){ cout<<(char)(n-32); } return 0;
Main.cc: In function 'int main()':
Main.cc:12:13: error: expected '}' at end of input
return 0;
^