Computer Science, asked by nithyaviji, 2 months ago

Write a program in QBASIC to print the multiples of 5 from 50 to 100 using for loop​

Answers

Answered by portugalindia567
3

Explanation:

CLS

PRINT “ENTER THE NO.”

INPUT “No” ; x

PRINT “THESE ARE THE MULTIPLES UPTO 10”

FOR y = 1 TO 10:

PRINT x * y

NEXT y

END

Similar questions