Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
98067 向睿杰 03大写字母转小写字母 C++ Accepted 1 MS 280 KB 130 2024-11-17 11:51:06

Tests(10/10):


Code:

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