Answer:
-3.75
Step-by-step explanation:
the opposite changes the sign from positive to negative, so the opposite of 3.75 would be -3.75

As you've got 15%, the best thing to do is to find 10%, then multiply it by 1.5. Once you've found the tip, you add this onto the cost of the meal.
Therefore, the total cost of $25 meal with a 15% tip is $28.75
Hope this helps :)
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);
}
}