Computer Science, asked by helmeenaalam, 3 months ago

Write a Qbasic to find a number whether it is a multiple of 6 or not.​

Answers

Answered by lilidey81
0

Explanation:

Its really easy to find the multiples of a number via QBASIC Program.

You just to do is that:-

CLS

Print “Enter you Fav Number:”

Input “The number is ”, a

Print “The multiples of ” ; a ; “are ”

for b = 1 to 10

print a * b

next

print

end

Similar questions