write a program to find the product of 5,7and 12 using variables.
Answers
Answered by
0
Explanation:
Programming Example
class Demo.
{
public static void main(String arr[])
{
int a=5,b=7,c=12,d;
d=a*b*c;
System.out. println("Product="+d);
}
Similar questions