找其中的韵母

#include <iostream>
#include <cstdio>
using namespace std;

int main()
{
    char c;
    while((c=getchar())!='\n')
    {
        if(c=='a'||c=='e'||c=='i'||c=='o'||c=='u')
        cout<<c;
        else continue;
    }
    return 0;
    cout<<endl;
}

找其中的韵母_第1张图片

你可能感兴趣的:(找其中的韵母)