Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145531 范照赫 07大小写转换 C++ Accepted 0 MS 272 KB 301 2026-01-25 15:59:38

Tests(10/10):


Code:

#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<bits/stdc++.h> using namespace std; int main(){ char n; cin>>n; if(n>='A'&&n<='Z'){ cout<<char(n+32); }else{ cout<<char(n-32); } return 0; }