Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}
C. thats the only one that will give you the same price for the DVDS as well. they charge $14 for CDS and $19 for DVDS
Answer:
D) x = 12
Step-by-step explanation:
Given:

1. Multiply both sides by 4

2. Subtract 3x from both sides

3. Add 28 to both sides

4. Divide both sides by 7 to isolate the variable:

Learn more here:
brainly.com/question/27844194