Computer Science, asked by silky567, 4 months ago

I have a question so if it is multiplication and the product should be M how should I write it after writing PRINT"MULTIPLICATION OF TWO NUMBERS="A*B​

Attachments:

Answers

Answered by soupals1upv
1

in qbasic ,

M = A*B

PRINT"MULTIPLICATION OF TWO NUMBERS=" M

in java,

int A ,B ;

int M = A*B ;

system.out.println ("PRINT"MULTIPLICATION OF TWO NUMBERS= " + M ) ;

Similar questions