1427: 【C++】(填空)复制元音字母(1)

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

Description

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

#include<iostream>
#include<cstdio>
using namespace std;
char s1[201],s2[101];
void cpy(char a[],char b[])
{
	for (int i=0,j=0; a[i]!='\0'; i++)
		switch(_____){
			case __:
			case __:
			case __:
			case __:
			case __:
			case __:
			case __:
			case __:
			case __:
			case __:
				b[j++]=a[__];
				break;
		}
}
int main()
{
	cin.getline(s1,200);
	cpy(s1,s2);
	cout<<s2<<endl;
	return 0;
}

Input

一行字符串

Output

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

Sample Input Copy

abcde

Sample Output Copy

ae

Source/Category