54 because if x+y=82 and x-y=26 add 26 and 82 is 108 the divide it by 2 your answer is 54
Answer:
The amount that came is 
Step-by-step explanation:
The computation is shown below:
According to the question, it is mentioned that
Multiply 4 by 
First open the equation in a fraction it would be 
Now multiplied the above fraction by a 4
That gives the result of 
Hence, the amount that came is 
We simply multiply the 4 with the given fraction
Thus the above represents the simplest form of the fraction
Answer:
volume = 504
Step-by-step explanation:
the basic formula for volume is length × width
14 x 3 x 3 x 2 x 2 = 504
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);
}
}