Answer:
85
Step-by-step explanation:
64+16+4+1= 85 is the total distance i believe
The unit rate is $7.75 because 46.50 divide by 6 is $7.75
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:
The prime factorization of 1001 is 7*11*13, so with the constraint that the tables seat between 2 and 19 guests, we can use tables that seat either 7, 11, or 13 guests.
For tables that seat 7, the caterer would need 11*13 = 143 tables.
For tables that seat 11, the caterer would need 7*13 = 91 tables.
Step-by-step explanation: