fork(2) download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. int main ()
  6. {
  7. int counter=0;
  8. char text[100];
  9. char vowel[] = "AEOUIY";
  10. char * pch;
  11. cin.getline(text,100);
  12. pch = strpbrk (text, vowel);
  13. while (pch != NULL) // пока есть гласные буквы
  14. {
  15. pch = strpbrk (pch+1,vowel); // поиск гласных букв
  16. counter++;
  17. }
  18. cout << counter;
  19. return 0;
  20. }
Success #stdin #stdout 0s 3464KB
stdin
COBBRA
stdout
2