Răspuns :

COROANA TE ROG!!!

#include<iostream>

#include<cstring>

using namespace std;

int main(){

   char text[1001]="";

   cin.getline(text, 1001);

   char *p=strtok(text, " -_`1234567890~!@#$%^&*()=+[]{};:'\"\\<,>.?/");

   while(p!=NULL){

       int voc=0, cons=0;

       for(int i=0;i<strlen(p);i++)

           if(strchr("aeiouAEIOU", p[i])!=NULL)

               voc++;

           else

               cons++;

       if(cons==1)

           cout<<p<<' ';

       p=strtok(NULL, " ");

   }

   return 0;

}