size_t primeCount = 0;srand(time(NULL));int cnt;for (cnt = 1; cnt <= 10; ++cnt) { if ( isPrimeNum(( rand() % 90 + 10 )) ) { ++primeCount; }}