accept two numbers then display their product
Answers
Answered by
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