Yeah. because a lot of people were begging for this, i post here the shi*.
Credits: https://yougame.bz/threads/112056/
using namespace std;
float getcorrectfloat(float min, float max)
{
return min + (rand() / ( RAND_MAX / (max-min) ) ) ;
}
float calculateSD(float data[]);
float...