randomize

Pascalzim

randomize

Inicializa o gerador de números randômicos do compilador.

Sintaxe


  randomize;


Exemplo


   Program PascalZIM ;

  var

     i: integer ;

    begin

      randomize;

      repeat


        i:= i + 1;

        writeln ( random(1000) );


      until i>10 ;

   end.


Created with the Freeware Edition of HelpNDoc: Easily create Web Help sites