輸出字串中的母音字母
阿新 • • 發佈:2019-02-16
Description
寫一函式,將兩個字串中的母音字母複製到另一個字串,然後輸出。Input
一行字串Output
順序輸出其中的母音字母(aeiuo)Sample Input
abcde Sample Output ae#include<cstdio> #include<cstdlib> #include<cstring> char str1[100]; char str2[100]; char str[6] = {'a' , 'e' , 'i' , 'o' , 'u'}; int main() { while(gets(str1) != NULL) { int i = 0; int k = 0; int len = strlen(str1); while(i < len) { for(int j = 0 ; j < 5 ; j++) if(str1[i] == str[j]) { str2[k++] = str1[i]; break; } i++; } puts(str2); } return 0; }