home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS - Coast to Coast
/
simteldosarchivecoasttocoast2.iso
/
awk
/
awk320.zip
/
RANTEST.AWK
< prev
next >
Wrap
Text File
|
1990-02-08
|
287b
|
15 lines
# count the number of random numbers in ten bins
BEGIN {
srand()
for (i = 0; i < 20; i++) {
for (j = 0; j < 1000; j++)
x[int(10 * rand())]++
printf(".");
}
printf("\n");
for (i in x)
printf(" %s: %6d\n", i, x[i])
}