Answer:
5
Step-by-step explanation:
x can only go into 20x2 and 10x and 5 is the Gcf of these three numbers
Answer:
This is a educated guess, but x is 80 and y is 100.
Step-by-step explanation:
My logic here is that the triangles are the same because of all the congruent lines and stuff. But from there, you know that both the right and the left side are 40 degrees. You know the total degree of a triangle is 180 so 180 - 40 - 40 is 100. So the final angle is 100. If you look at x, its on the outside, but on a line. If you can imagine a circle, its half, so its a 180 degrees total. Then its 180 = x + 100. So x is 80. And then by that same logic its y = 100.
Answer:
Y=4-2x
If need step by step please message me! And yes this is the right answer!
10,000,000+2,000,000+400,000+30,000
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);
}
}