Given the variable pricePerCase, write an expression corresponding to the price of a dozen cases.
LANGUAGE: JAVA
CHALLENGE:
Given the variable pricePerCase, write an expression corresponding to the price of a dozen cases.
SOLUTION:
pricePerCase * 12
Posted in Java, Learn To Code