Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
CLASS 3D
#1
Program of ordination or classification 3D

Name: "CLASS 3D"

lrcvs 24.08.09

( Is limited, but...power)

CLS

DIM a$(9, 9, 9)

FOR n = 1 TO 1000
RANDOMIZE TIMER
x$ = LTRIM$(STR$(INT(RND * 999)))
IF LEN(x$) < 3 THEN l$ = STRING$(3 - (LEN(x$)), "0"): x$ = l$ + x$
a$(VAL(LEFT$(x$, 1)), VAL(MID$(x$, 2, 1)), VAL(RIGHT$(x$, 1))) = x$
NEXT n

FOR x = 0 TO 9
FOR y = 0 TO 9
FOR z = 0 TO 9

IF a$(x, y, z) <> "" THEN PRINT a$(x, y, z); " ";

NEXT z, y, x
Reply
#2
I understand what this does, but I don't know why you wrote it. What use is it?
am an asshole. Get used to it.
Reply
#3
NONE OF COURSE! LOL  ;D
Get my QB demonstrator here: http://dl.dropbox.com/u/8440706/Q-Basics.zip
Reply
#4
It is an experiment to test other ways of classifying random numbers.

But the memory of the "DIM" is very limited and I am limited to 1000 numbers.

The result is simple:

Displays the numbers sorted and removes duplicates.

The program does not sort the numbers, just the situation in its proper position.

In listing the "DIM" shows all numbers classified.


Ninkazu: Thanks for your opinion.

Greetings
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)