Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
152827 黄俊然 08大小写转换 C++ Accepted 1 MS 272 KB 212 2026-05-02 22:21:32

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; }