Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138639 孔声豪 08大小写转换 C++ Accepted 0 MS 276 KB 204 2025-11-29 12:08:10

Tests(10/10):


Code:

#include<iostream> #include<cstdio> using namespace std; int main(){ char x; cin>>x; if(x<=90){ x=x+32; }else{ x=x-32; } cout<<x; return 0; }