1428: 【C++】(填空)复制元音字母(2)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:17 Solved:16

Description

写一函数cpy,将一个字符串中的元音字母复制到另一个字符串,然后输出。
复制以下代码,补充 下划线 和 ?的代码。


#include<iostream>
#include<cstdio>
using namespace std;
void cpy(string a, string _____)
{
	for (int i=0; i < a._______; i++)
		switch(______){
			case 'A':
			case 'a':
			case 'E':
			case 'e':
			case 'I':
			case 'i':
			case 'O':
			case 'o':
			case 'U':
			case 'u':
				b +=a[i];
				break;
		}
}
int main()
{
	string s1,s2;
	_____________;
	cpy(s1,s2);
	cout<<____<<endl;
	return 0;
}




Input

一行字符串

Output

顺序输出其中的元音字母(aeiou)

Sample Input Copy

abcde

Sample Output Copy

ae

Source/Category