Answer:
26/5
Step-by-step explanation:
(2)(2)(4)/5 −8+10
(4)(4)/5−8+10
=16/5−8+10
=−24/5+10
=26/5
Alternate form
5.2
Answer:
14 paychecks
Step-by-step explanation:
$495 + $65 = $560
$560 / 40 = 14
Therefore , he must save for 14 paychecks
Hope this helps and pls mark as brainliest :)
Answer:
It would be 2 times the old perimeter.
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);
}
}