Can u please explain why it is either !? thx in advance reallly need it >< and does anyone noe how to make a flow chart for the following
Option Explicit
Private sub cmdFor_click
Dim count as integer
cls
Print "count to 10 using a for loop"
For count =1 to 10
Print Count
Next count
End sub
NEXT ONE T_T
Private sub cmdReapeat_click
Dim count as integer
cls
count = 1
print "count to 10 using a repeat loop"
do
print count
count = count +1
loop until count =11
end sub
THX IN ADVANCe
2007-03-13
22:37:13
·
2 answers
·
asked by
Anonymous
in
Computers & Internet
➔ Programming & Design