9 + 6u = 7u
u = 9 (Subtract "6u" from both sides)
$160 (if uncle, granny, aunt, gave $100 in total) $260 if they gave $100 each
540=
54*10=
6*9*2*5=
2*3*3*3*2*5=
2*2*3*3*3*5 or in exponential form
(2²)(3³)(5)
Answer:
17, 19, 21
Step-by-step explanation:
If we denote the smallest number as x, then the middle number will be x + 2 and the largest number will be x + 2 + 2.
The equation is:
x + (x + 2) = 3 * (x + 2 + 2) - 27
2x + 2 = 3x + 12 - 27
2x - 3x = 12 - 27 - 2
-x = -17
x = 17
The numbers are: 17, 19, 21
Let's check to be sure:
17 + 19 = 36
3 * 21 - 27 = 63 - 27 = 36
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);
}
}