Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4073 杨洋杰 C语言5.4 C++ Accepted 0 MS 260 KB 185 2024-07-28 13:53:42

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ char c; cin>>c; if((int)c>=65&&(int)c<=89) cout<<(char)((int)c+32)<<endl; else cout<<c<<endl; return 0; }