Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144721 王峻熙 07大小写转换 C++ Accepted 0 MS 268 KB 216 2026-01-24 15:54:17

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ char 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; }