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

PROGRAMMING:Delete a character

Luz5年前 (2021-05-10)题库443
Input a string STR and a character ch from the keyboard, delete all the characters Ch in STR and output the deleted string.
###Input format:
Enter a string STR on the first line and a character ch on the second line.
###Output format:
Output the string after deleting the character ch.
###Input example:
```in
abcdefg1237899996
nine
```
###Output example:
```out
abcdefg123786
```







answer:If there is no answer, please comment