write a programm to print the product of 32 and 12 print division of 84 by 6
Answers
Answered by
13
Answer:
class K
{
public static void main()
{
int a=32,b=12;
int c=84,d=6;
int r=a*b;
int s=c/d;
System.out.println("Product="+r);
System.out.println("Quotient="+s);
}
}
Similar questions