-->
当前位置:首页 > 题库

PROGRAMMING:Case conversion

Luz5年前 (2021-05-10)题库407
Input a character, if it is uppercase, convert it to lowercase and output; If it is lowercase, convert it to uppercase and output it; If not, output: error
###Input example:
```in
a
```
###Output example:
```out
A
```
###Input example:
```in
B
```
###Output example:
```out
b
```
###Input example:
```in
one
```
###Output example:
```out
error
```







answer:If there is no answer, please comment