Well this is simple how to print an asterisk base on the answer of the if statement. the if statement will output all the even numbers base on the for loopCode:Dim ctr As Integer Dim i As String For ctr = 1 To 10 If ctr Mod 2! = 0 Then Print ctr End If Next




Reply With Quote