Answer:
4r- 21
Step-by-step explanation:
4 - r= r and r+ 21/= R21 and Simplified Is -4 and R21
Answer:
3 dollars for each can of tuna
Step-by-step explanation:
9-3=6
6-3=3
3-3=0
Answer:
Step-by-step explanation:
The answer to your question is b. 2
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);
}
}