Answer:
5 times larger
Step-by-step explanation:
5*10^5 = 500,000
1*10^5 = 100,000
500,000/100,000 = 5
In there mouth and they ate them
3 log 2x = 4
==> log 2x = 4/3
==> 2x = 10^(4/3)
==> x = \frac{10^(4/3)}{2}
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);
}
}