Quote:
Originally posted by OldBeane
Well, there are of course QBasic and Turbo Pascal, which I became quite familiar with...
But in my later school years we used Visual Basic 6. I'm probably not as good as you guys, but I made a 2 player snake game, and a graph plotter, and different database type programs... it was quite fun.
And by myself I started to learn how to use C++ but I only got as far as making a very basic paint program.
|
Both those are MUCH more then I cand do...
Here is the most advance proggram that I have
written myself:
Code:
#This program is hte most advanced I have made myself for now (16:12, 31.01.2004)
#It the same kind of game as one of the samples that was in the turtorial,
#but I coded this myself.
#Woohoo! I made a ascii! I rock!
print " ____ __ ___ ___ "
print "/ \ | | | / / "
print "| __ | | |- \__ \__ "
print "\____/ \__/ |__ .__/ .__/ "
print " By Peefy "
print " "
#Set number which is the answer. I'll probably make it random later
number = 4
guess = 0
while guess != number :
guess = input ("Guess the number: ")
if guess > number :
print "Lower then that"
elif guess < number :
print "Higher then that"
print "You made it! The number was", number