Computer Science Canada

Create Snow in Turing

Author:  ziki_23 [ Mon Nov 08, 2010 1:18 pm ]
Post subject:  Create Snow in Turing

How would i create snow without using the following command:

const NoOfFlakes := 400
var flakeX : array 1 .. NoOfFlakes of int
var flakeY : array 1 .. NoOfFlakes of int

for flake : 1 .. NoOfFlakes
flakeX (flake) := Rand.Int (0, maxx)
flakeY (flake) := Rand.Int (0, maxy)

Please I need it asap

Author:  SNIPERDUDE [ Mon Nov 08, 2010 1:38 pm ]
Post subject:  RE:Create Snow in Turing

May I ask why you cannot use the aforementioned code snippet?


: