| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144718 | 王峻熙 | 07大小写转换 | C++ | Wrong Answer | 0 MS | 272 KB | 215 | 2026-01-24 15:53:33 |
#include<iostream> using namespace std; int main(){ int x; cin>>x; if('A'<=x&&x<='Z'){ x=x+32; } else if('a'<=x&&x<='z'){ x=x-32; } cout<<x<<endl; return 0; }
------Input------
B
------Answer-----
b
------Your output-----
0