Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155536 鸡哥 08大小写转换 C++ Accepted 1 MS 272 KB 207 2026-06-07 15:09:03

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a >= 97 and a <= 122){ cout<<char(a-32); } if(a >= 65 and a <= 90){ cout<<char(a+32); } return 0; }