Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
3827 刘芃伽 03大写字母转小写字母 C++ Accepted 0 MS 252 KB 163 2024-07-12 10:54:58

Tests(10/10):


Code:

# include<iostream> using namespace std; int main() { char upper_C; cin>>upper_C; upper_C=upper_C+32; cout<<upper_C<<endl; return 0; }