FIT   100
© Copyright University of Washington 1999-2000
Mini-Exercise #1 -- Answer
vWhat does this print?
v
vDim x As Integer
vx = 10
vIf   x = 1   Then
v     Print “octopus”
vElseIf x = 2 Then
v     Print “squid”
vElse
v     Print “clam”
vEndIf
vPrint “mollusc”
clam
mollusc