Hi lch habe noch eine Frage zu random. Ich weiß wie man integer Zahlen erzeugt aber ich brauche double Zahlen von [x,y]. Wie kann man mit C++ so etwas bewerkstelligen? Die Performance ist relativ egal.
srand(time(NULL)); // muss nur einmal gemacht werden ... int i = (rand() % (y - x)) + x;
Beachte aber auch, dass y > x sein muss. Sonst bekommst du komische Ergebnisse. -- All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925)Dieser Post wurde am 19.06.2004 um 14:12 Uhr von typecast editiert.