Computer Science, asked by Pushpakamesh1994, 7 months ago

Write a program to find the product of 5,7and12 using variables.

Answers

Answered by ArpitMishra506
1

public class Product

{

public static void main(String args[])

{

int a= 5, b=7, c=12;

int product=a*b*c;

System.out.println(product);

}

}

.

.

.

.

HOPE THIS HELPS YOU

.

.

.

.

PLEASE MARK AS BRAINLIEST AND FOLLOW ME TOO

Similar questions