random

Pascalzim

random

Recebe como parâmetro um inteiro x e retorna um número n no intervalo 0 <= n < x.

Sintaxe


  random( x ): integer;



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: Create HTML Help, DOC, PDF and print manuals from 1 single source