Answer:
There are all true statements
Step-by-step explanation:
the graph is just trying to confuse you but it's simple just find the letters on the graph then see if they look how the show it below
the answer to this problem is -4
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);
}
}
Answer:
Whre is the question I don't get it