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

PROGRAMMING:Copy vowels

Luz5年前 (2021-05-10)题库436
Write a program to copy the vowel in a string to another string, then output, and finally wrap. If there is no vowel, please output "there is no char." and wrap.
###Input format:
Enter a string of no more than 80 characters.
###Output format:
Output the vowels contained in it. If there are no vowels, output "there is no char." and wrap it.
###Input sample 1:
```in
aAeEiIoOuUlalala
```
###Output sample 1:
```out
aAeEiIoOuUaaa
```
###Input sample 2:
```in
bbbcccfffggghhhjjjkkk
```
###Output sample 2:
```out
There is no char.
```







answer:If there is no answer, please comment