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

PROGRAMMING:Replace uppercase letters in string

Luz5年前 (2021-05-10)题库394
Enter a string and a single character to replace all uppercase letters in the string with the input character.
###Input format:
Enter two lines, the first line is not more than 80 long and ends with carriage return. Enter a single character on the second line
###Output format:
Output the replaced string
###Input example:
For example:
```in
Hello World!
seven
```
###Output example:
```out
7ello 7orld!
```







answer:If there is no answer, please comment