Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95210 杨晨熠 字符转换 C++ Accepted 1 MS 272 KB 201 2024-10-27 10:10:52

Tests(1/1):


Code:

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