Sample code for 30+ languages & platforms
Lianja

Generating Random Integer in Range

See more PRNG Examples

Demonstrates how to generate random integers in a specified range.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

llSuccess = .F.

loFortuna = createobject("CkPrng")

// Generate random integers between 12 and 24 inclusive

for i = 0 to 100
    ? str(loFortuna.RandomInt(12,24))
next


release loFortuna