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

PROGRAMMING:Output character - single branch

Luz5年前 (2021-05-10)题库375
Enter a character. If it is lowercase, convert it to uppercase. The rest of the characters remain unchanged.
###Input format and sample 1:
Enter a lowercase letter, for example:
```in
a
```
###Output format and sample 1:
Output the uppercase form of the letter, for example:
```out
A
```
###Input format and sample 2:
Enter a capital letter, for example:
```in
A
```
###Output format and sample 2:
Output the letter directly, for example:
```out
A
```
###Input format and sample 3:
Enter a numeric character, for example:
```in
five
```
###Output format and sample 3:
Output the numeric character directly, for example:
```out
five
```






answer:If there is no answer, please comment