Answer:
Your correct answer is d. Harry and Helen will receive a refund of $555. explain please
Step-by-step explanation:
Hope this helps :) -Mark Brainiest Please :)
1) property of distribution: 30 = -30n - 30
2) inverse property of addition: 60 = -30n
3) inverse property of multiplication: -2 = n
step 2: subtract 30 from both sides
step 3: divide -30 from both sides
Answer:
uh you didnt put the picture please put the picture i really want to help you:)
Step-by-step explanation:
i work at my uncle’s restaurant but idr work
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);
}
}