Answer:
28.26
Step-by-step explanation:
The formula for calculating diameter is π<em>d</em> (pi times the diameter), so 3.14 times 9 is 28.26.
The slope of the line between the points On the line would be -1. And the y intercept would be 1.
Y = -x + 1.
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:
What is it?
Step-by-step explanation: