Given the variables fullAdmissionPrice and discountAmount (already declared and assigned values), write an expression corresponding to the price of a discount admission.
LANGUAGE: JAVA
CHALLENGE:
Given the variables fullAdmissionPrice and discountAmount (already declared and assigned values), write an expression corresponding to the price of a discount admission.
SOLUTION:
fullAdmissionPrice – discountAmount
Posted in Java, Learn To Code