Write a program to find the product of 8, 10 and 15 using variables?
Answers
Answered by
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