Computer Science Canada

Starry night program

Author:  Rowah [ Sun Jan 04, 2004 11:03 am ]
Post subject:  Starry night program

Wanna know how you can watch the stars with your girlfriend in the middle of a hot and sunny afternoon? Just copy my code into turing and run it of course!
code:
%First national bank of variables
var Row, Column : int
randomize
colorback (7)
cls
color (0)
loop
    delay (358) %Play around with the values in delay, try a delay of 0 ;)
    randint (Column, 1, maxcol)
    randint (Row, 1, maxrow)
    locate (Row, Column)
    put "*"..
end loop

Author:  Rowah [ Sun Jan 04, 2004 11:19 am ]
Post subject:  Graffiti Proggie

Modified the above program intoo
The Grafitti Program
This was one hell of a new year's party eh
Quote:
%First national bank of variables
var Row, Column, Color : int
randomize
loop
randint (Column, 1, 400)
randint (Row, 1, 650)
randint (Color, 1, 250)
drawdot (Row, Column, Color)
end loop

Author:  shorthair [ Wed Jan 07, 2004 10:47 am ]
Post subject: 

i like it , i applied the code to my house program , gave me some good ideas for night time modes in my game , Very Happy

Author:  Rowah [ Thu Jan 08, 2004 11:47 am ]
Post subject: 

W00t first positive comment! The power of Rowah grows!!


: