Computer Science, asked by Animeshbhakat, 3 months ago

Write a program to find the product of 8, 10 and 15 using variables?​

Answers

Answered by monika01206
1

Answer:

Explanation:

public class Solution {

   public static void main(String[] args) {

       int a = 8;

       int b = 10;

       int c = 15;

       System.out.println(a*b*c);

   }

}

Similar questions