| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5453 | 罗炜翰 | 大小写转换 | C++ | Wrong Answer | 0 | 1 MS | 260 KB | 193 | 2025-02-09 15:38:26 |
#include<iostream> using namespace std; int main() { char b; cin>>b; int a = b; if(a >= 65) { a += 32; } else if(a >= 97) { a -= 32; } cout<<(char)a; return 0; }