Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94512 张新福 大写转小写 C++ Accepted 0 MS 272 KB 120 2024-10-23 15:42:48

Tests(1/1):


Code:

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