Would it be 121212/999 then times by 444, which would be 212.3x444 to give a final answer of 53872 minutes
Answer: The answer is 3.77.
Explanation: Since 0.10 is 10 times smaller than 1, we know that if we divide 37.7 by 10, we will get the same answer as 0.10 x 37.7.
Answer:
See proof below
Step-by-step explanation:
If C is the midpoint of AB, then AC = CB
Given
AC=7x−10;
CB=3x+10
Then 7x - 10= 3x+10
Add 10 to both sides
7x-10+10 = 3x +10+10
7x = 3x + 20
7x - 3x = 10+10
4x = 20
x = 20/4
x = 5
Get AC
AC = 7x - 10
AC= 7(5) - 10
AC = 35-10
AC = 25 (Proved)
45/100 = 9/20
Work: divide by 5
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);
}
}