Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (ANSI-Standard) » random

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
19.06.2004, 13:56 Uhr
~atom
Gast


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.

Hat da jemand eine Idee? (Was fertiges?)

mfg
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
19.06.2004, 14:11 Uhr
typecast
aka loddab
(Operator)


Weils so schön kurz ist:

C++:
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.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
19.06.2004, 14:24 Uhr
~Atom
Gast


hmm das sind jetzt aber int zahlen oder? Also keine double die ich brauche?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
19.06.2004, 14:32 Uhr
typecast
aka loddab
(Operator)


Jaja, ich hab mal wieder nicht richtig gelesen :-(

C++:
double drand(double x, double y){
  return ((double)rand() / (y-x)) + x;
}


--
All parts should go together without forcing. ... By all means, do not use a hammer. (IBM maintenance manual, 1925)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
19.06.2004, 20:01 Uhr
0xdeadbeef
Gott
(Operator)



C++:
double drand(double x, double y) {
  assert(x <= y);
  return ((double) rand() / RAND_MAX * (y-x) + x);
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (ANSI-Standard) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: