Answer:
Answers are: (x+3)(x+5) = 0
So first zero: x+3 = 0 so x = -3
Second zero: x+5 = 0 so x = -5
so zeros are: x = -5 and -3
Step-by-step explanation:
Answer:
No . C = COEFFICIENT IS THE ANSWER OF THE QUESTION
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);
}
}