FIT
100
© Copyright University of Washington 1999-2000
Mini-Exercise #1
v
What does this print?
v
v
Dim x As Integer
v
x = 10
v
If
x = 1
Then
v
Print “octopus”
v
ElseIf x = 2 Then
v
Print “squid”
v
Else
v
Print “clam”
v
EndIf
v
Print “mollusc”