Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104609 黄雨婷 07大小写转换 C++ Accepted 1 MS 280 KB 231 2025-01-05 18:10:03

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ char a,b; cin>>a; if(a>=97){ b=a-32; } else{ b=a+32; } cout<<b; }