Answer:
The radius is 5 in
Step-by-step explanation:
The area of a circle is given by the formula
A = pi *r^2
We know the area = 78.5 in^2 (volume would be in^3 area is in^2)
78.5 = 3.14*r^2
Divide each side by 3.14
78.5/3.14 = 3.14/3.14*r^2
25 = r^2
Take the square root of each side
sqrt(25) sqrt(r^2)
5 =r
Answer:
9 dolloars an hour man thats great pay
Step-by-step explanation:
344 thousands times 1/10=34,400
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);
}
}
I’m pretty sure it looks like it’s D