Computer Science, asked by Deepika666, 2 months ago

accept two numbers then display their product​

Answers

Answered by priya7668
1

Answer:-

I'm writing this with Java language...

System.out.print("Input two numbers");

int a = Integer.pareseInt(br.readline());

int b = Integer.pareseInt(br.readline());

int c = a*b;

System.out.print("product of two numbers="+c);

HOPE IT WILL HELP!

Similar questions