What should the results be of the following pseudocode:
Initialize counter to 10
Do while counter < 100
Display counter multiplied by 2
Add 10 to the counter
End loop
I'm thinking: 20, 60, 140
This is my code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim multiplied As Integer
Dim counter As Integer = 10
Do While counter < 100
multiplied = counter * 2
Label1.Text = Label1.Text & ControlChars.NewLine & multiplied.ToString
counter = multiplied + 10
Loop
End Sub
Thanks guys!!