fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int c;
  6. char ch;
  7. while((ch=getchar())!=EOF);
  8. {
  9. if(ch=='a'||ch=='e'||ch=='i'||ch=='o'||ch=='u')
  10. c=c+1;
  11. }
  12. printf("%d",c);
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5536KB
stdin
Standard input is empty
stdout
Standard output is empty