A program to find the product of 5,7,12 using variable
Answers
Answered by
12
- Write a java program to find the product of 5, 7 and 12 using variable.
class Program
{
public static void main()
{
int p;
p=5*7*12;
System.out.println("Product is:- "+p);
}
}
Similar questions