Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149261 邓弘锐 07大小写转换 C++ Accepted 0 MS 276 KB 220 2026-03-08 15:30:52

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ char c; cin>>c; if(c>='A'){ if(c<='Z') { c=c+32; } else{ c=c-32; } } cout<<c; return 0; }