For Loop statement that loops the numbers from 1-100 and determines all numbers Divisible by 3. Is my code correct?
Sub bt1_Click
Dim Num,Res As Int
Num = 0
Res = 0
For Loop Res
Res = Num % 3
Num = Num + 1
Loop
Bt1.Text = “Done”
End Sub
Just beginner hehe