Computer Science, asked by a079016, 4 days ago

Create a QBASIC program to take input of a number. Check if this number is a multiple of 7 or not. Please give correct answers its really urgent.

Answers

Answered by jhadeepa125gmailcom
1

Answer:

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

I guess it does the work. You could also modify it to print a certain number of multiples.

Similar questions