Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5176 admin 大小写转换 C++ 通过 100 0 MS 260 KB 227 2025-01-23 15:34:07

Tests(5/5):


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


测评信息: