Página inicial Delphi Função: Valor Aleatório - Códigos Delphi Função: Valor Aleatório - Códigos Delphi Autor: EcomRepair abril 12, 2016 0 Função: Valor Aleatório // Valor Aleatório Código function ValAle [ ( Range: Integer) ]; Retorna um valor Randômico 0 <= X < Range. var I: Integer; begin Randomize; for I := 1 to 50 do begin Canvas.TextOut(Random(Width), Random(Height), 'DelphiBoy2!'); end; end; Tags CódigosDelphi Facebook Twitter Whatsapp Mais recentes Antigos