Code: Select all
Dim as string game1,game2,game3,game4,game5,answer,score
Print "welcome to jeopardy"
Print "first thing to do is choose which game"
Print "game1,game2,game3,game4,game5"
Do
input answer
answer = LCase$(answer)
loop until answer = "game1" or answer = "game2" or answer = "game3" or answer = "game3" or answer = "game5"
if answer = "game1" Then
Goto game1
game1:
print
print "category: American history"
print "100: In the American civil war what were the southerns name?"
print "a: Who were the Union"
print "b: Who were the Confederates"
print "c: Who were the axis"
print "d: who were the UNA"
Do
input answer
loop until answer = "a" or answer = "b" or answer = "c" or answer = "d"
if answer = "b" Then
score = score+100
else Then
score = score -100
print score
sleep
endif
end
endif
endif
endif