Answer:
15x3y.
Step-by-step explanation:
.
Answer:
D. 140
Step-by-step explanation:
volume equals length times width times height 7 times 4 times 5 equals 140 good luck
Answer:
A
Step-by-step explanation:
Substitute the given values into the expression
2a² + cb
= 2(5)² + 3(11)
= 2(25) + 33
= 50 + 33
= 83 → A
Answer:
(0, 2)
Step-by-step explanation:
Both the lines are intersecting each other at point (0, 2)
So, the solution to the system of equations would be (0, 2)
Hope it helps you in your learning process
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);
}
}