Einzelnen Beitrag anzeigen

ATSV

Registriert seit: 8. Aug 2008
95 Beiträge
 
Delphi 7 Professional
 
#141

Re: Positive Zahlen in negative umwandeln

  Alt 31. Okt 2008, 15:45
Delphi-Quellcode:
function makeNeg(zahl: Integer): Integer;
label 1;
begin
  Result := zahl;
  1: if result >=0 then
  begin
    Result := Result - zahl;
    goto 1;
  end;
end;
hat das schon jemand gemacht?