Answer:
4x > 10
Step-by-step explanation:
4x > 10
6(21)=72 6(31)=186
add 72+186=258
258 is the answer
A. 4•x and 4•2 this would turn in 4x+8
B. x•6 and x•8 this would turn into 6x+8x and this equals to 14x
C. 4•2x and 4•3 this would turn into 8x+12.
D. 6•x, 6•y, and 6•z this would equal 6x+6y+6z.
I’m sorry if it’s not clear this is my first answered question.
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);
}
}