Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108614 | 王晏林 | 07大小写转换 | C++ | Wrong Answer | 1 MS | 268 KB | 244 | 2025-01-21 09:12:49 |
#include<iostream> #include<cstdio> using namespace std; int main(){ char a; cin>>a; if(65<=a<=90){ cout<<char(a+32)<<endl; } if(97<=a<=122){ cout<<char(a-32)<<endl; } return 0; }
------Input------
B
------Answer-----
b
------Your output-----
b "