Computer Science, asked by ayat79, 1 month ago

write a program to multiply two no.s entered by the user​

Answers

Answered by TheHoneyBabe
13

Explanation:

class pc

{

public void ab( int a, int b)

{

int c= a*b;

System.out.println(" Product of two nos="+c) ;

}

}

Similar questions