| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144595 | 王峻熙 | 字符转换 | C++ | Wrong Answer | 0 MS | 268 KB | 210 | 2026-01-24 14:17:41 |
#include<iostream> using namespace std; int main(){ int m; cin>>m; if('A'<=m&&m<='Z'){ cout<<m+32<<endl; } if('a'<=m&&m<='z'){ cout<<m<<endl; } return 0; }
------Input------
T
------Answer-----
t
------Your output-----