Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
3826 | 邓小龙 | 03大写字母转小写字母 | C++ | Accepted | 0 MS | 264 KB | 209 | 2024-07-12 10:49:39 |
# include<iostream> using namespace std; int main(){ char upper_c; cin>>upper_c; upper_c=upper_c+32; // char lower_c; // lower_c=upper_c+32; cout<<upper_c<<endl; return 0; }