Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145347 范照赫 字符转换 C++ Accepted 0 MS 268 KB 274 2026-01-25 14:56:07

Tests(1/1):


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<<n; } return 0; }