Math, asked by tinapachpande6, 1 month ago


To print first 10 multiple of 6,7 and 8
in QB6 FORM

Answers

Answered by XxArmyGirlxX
0

Rem using FOR...NEXT loop

FOR A-6 to 60

PRINT AA

NEXT A

REM Using DO WHILE... Loop

A=60

DO WHILE (A>=60)

PRINT A

A-A+60

Loop

REM Using DO UNTIL...Loop

A-60

Do UNTIL (A<60)

PRINT A

A=A+60

LOOP

Similar questions