Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155532 鸡哥 08大小写转换 C++ Wrong Answer 1 MS 264 KB 206 2026-06-07 15:03:37

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a >= 97 and a <= 122){ cout<<char(a-32); } if(a >= 65 and a <= 90){ cout<<char(a+32); } return 0; }


Run Info:

------Input------
l
------Answer-----
L
------Your output-----