Salut!
#include "stdafx.h"
#include <iostream>
#include <string.h> // strlen() strpbrk()
#include <conio.h> //getch()
using namespace std;
int main()
{
char sir[151];
int nr = 0;
cin.get(sir, 150);
char *p = strtok(sir, " ,");
while (p != NULL)
{
bool isGraterThan = (strlen(p) >= 7) ? true : false;
bool uExists = (strpbrk(p, "u")) ? true : false;
if (isGraterThan && uExists)
nr++;
p = strtok(NULL, " ,");
}
cout << nr;
getch();
return 0;
}