Computer Science, asked by silky567, 5 months ago

Write the QBasic programme to print M as the product of A and B.
Pls correct answers only ,its for my exam​

Answers

Answered by BrainlyProgrammer
3

\huge\star\underbrace{\mathtt\red{⫷❥ᴀ᭄} \mathtt\green{n~ }\mathtt\blue{ §} \mathtt\purple{₩}\mathtt\orange{Σ} \mathtt\pink{R⫸}}\star

CLS

PRINT "ENTER 2 NO'S"

INPUT A, B

M=A*B

PRINT M

END

Can my answer be brainlest answer?

Answered by anindyaadhikari13
2

Question:-

➡ Write a QBASIC program to print M as a product of A and B.

Program:-

CLS

PRINT "ENTER TWO NUMBERS..."

INPUT A, B

M = A*B

PRINT "M IS: " +M

END

This is a very simple program. At first, we will take values of A and B as input and then we will multiply variables A and B and then store it in M.

Now, we will print.

Similar questions