the 20x(8+2) is just two times greater as its 200 instead of 100 which is the other answer
Answer:
To find the area of she shaded part we first need to find the total of the area.
L x W
8 x 5 = 40 is the total area
Now we need to find the area of the non - shaded part
Since it is a square all sides are equal the short lines sticking from the sides indicate that
2 x 2 = 4
Now we subtract the total area from the non shaded area.
40 - 4 = 36
Answer:
Cube
Step-by-step explanation:
It makes a cube
Answer:
Step-by-step explanation:
Make 6 1/2 an irrational fraction: 13/2 (I dunno know if its called that )
divide 16 by 2: 8
multiply that by 13: 104
Tell me if this helps or not bc I'm not really sure, but I really hope I helped!
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);
}
}