Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Programmieren allgemein (https://www.delphipraxis.net/40-programmieren-allgemein/)
-   -   Randomzahl -1 und 1 (https://www.delphipraxis.net/63860-randomzahl-1-und-1-a.html)

turboPASCAL 23. Feb 2006 18:57


Randomzahl -1 und 1
 
Hi,

ich breuchte mal einen kleinen Tip wie ich eine Zufallszahl hin bekomme im Bereich von -1 und 1 ohne die verflixte 0 und while oder repeat.
Ich komme nicht darauf....

idontwantaname 23. Feb 2006 19:02

Re: Randomzahl -1 und 1
 
so vielleicht ? :?
Delphi-Quellcode:
function GetRandomNumber: Double;
begin
  if Random > 0.5 then
    Result := 0.0001 + Random
  else
    Result := - Random - 0.0001;
end;

marabu 23. Feb 2006 19:04

Re: Randomzahl -1 und 1
 
Hallo Matti,

gefällt dir das?

Delphi-Quellcode:
function RandomSign: Integer;
begin
  if Odd(Random(1))
    then Result := 1
    else REsult := -1;
end;
Grüße vom marabu

turboPASCAL 23. Feb 2006 19:06

Re: Randomzahl -1 und 1
 
Code:
if [b]Odd[/b](Random(2))
Dass habe ich gesucht. :wall:


Thx, euch beiden.

@marabu, Random(2) ;)


Alle Zeitangaben in WEZ +1. Es ist jetzt 05:53 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz