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:
![](https://hi-static.z-dn.net/files/db8/effbf039d6851855705f5e89722f3bc4.jpg)
Answers
Answered by
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