W Dim num As Integer = 2 Dim spoon(num) As String spoon(0) = "soup" spoon(1) = "dessert" spoon(2) = "coffee?
what is the answer to this in visual basic Dim num As Integer = 2 Dim spoon(num) As String spoon(0) = "soup" spoon(1) = "dessert" spoon(2) = "coffee" Text = "Have a " & spoon(num - 1) & "spoon." End Sub End Cl
No comments:
Post a Comment