| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144819 | c13 | 字符转换 | C++ | Wrong Answer | 0 MS | 268 KB | 166 | 2026-01-24 19:00:17 |
#include<bits/stdc++.h> using namespace std; int main(){ char a; cin>>a; if(a<='Z'&&a>='A')cout<<a+'a'-'A'<<endl; else cout<<a<<endl;; return 0; }
------Input------
T
------Answer-----
t
------Your output-----
116