What is the meaning of the following code?
Dim I, sum as integerPrivate Sub command1_click ()sum = 0For i = 3 to 15sum = sum + iNext iLabel1.caption = sum =&cstr(sum)End Sub
Reveal answer
Fill a bubble to check yourself
What is the meaning of the following code?
Dim I, sum as integerPrivate Sub command1_click ()sum = 0For i = 3 to 15sum = sum + iNext iLabel1.caption = sum =&cstr(sum)End Sub