Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1438 吴奕希 07大小写转换 C++ Wrong Answer 0 MS 256 KB 199 2023-09-30 16:46:05

Tests(0/10):


Code:

# include<iostream> using namespace std; int main() { int a; cin>>a; if(a >= 97) { cout<<(char)(a-32); } else { cout<<(char)(a+32); } }


Run Info:

------Input------
Q
------Answer-----
q
------Your output-----