Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155543 王艺博 08大小写转换 C++ Accepted 29 MS 276 KB 182 2026-06-07 15:18:36

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { char a,A; cin>>a; if(a>='a' and a<='z'){ cout<<char(a-32); }else{ cout<<char(a+32); } return 0; }