numeros[random + 3 * n] = true;
lst.push_back (random);
}
+
+ delete [] numeros;
}
void Random::Strings (std::list<std::string> &lst, uint n)
}
}
+double Random::Double (double min, double max)
+{
+ return min + max * (float)rand () / (RAND_MAX + 1.0f);
+}
+