Write the formula to find the product of 56, 78 and 48 stored in c5, c6 and c7 respectively
Answers
Answered by
0
Explanation:
Please note, program is written in java.
public class Product
{
public static void main(String args[])
{
int c5=56, c6=78, c7 =48;
double prod=c5*c6*c7;
System.out.println("Product of 56, 78, 48 is "+prod);
}
}
PLEASE MARK IT AS THE BRAINLIEST !!!
Similar questions