#include <stdio.h>

void main()
{
        int cnt=0; 
        char a;
        scanf("%s",&a);
        
        while(a!=''){
                if(a=='a'||a=='A'||a=='i'||a=='I'||a=='o'||a=='O'||a=='u'||a=='U'||a=='e'||a=='E')
                {
                        cnt++;
                }
                
        }
        printf("모음의 갯수는 %d개 입니다.n",cnt);
}


fflush 랑 gets 안쓰고 할려고

cnt를 모음갯수 변수로놓고

%s써서 문자열 입력받고  그 문자열중에 널문자가 나올때까지 aeiou 있으면 cnt증가시키고 널문자 나오면 밖으로 빠져나와
cnt를 출력하는건데

어느부분이 잘못됬는지 알려줘봐 ㅠㅠ  그냥 지금 배우지도않은 fflush쓰라고 나온 인터넷글같은거 알려주지말고 ㅠㅠ