Answer:
<h2>
<em>3</em><em>9</em><em> </em><em>units</em></h2>
<em>Solution,</em>
<em>Total </em><em>area=</em><em>Area </em><em>of </em><em>ABCD+</em><em> </em><em>Area </em><em>of </em><em>triangle </em><em>ADE</em>
<em>
</em>
<em>hope </em><em>this </em><em>helps.</em><em>.</em><em>.</em>
<em>Good </em><em>luck</em><em> on</em><em> your</em><em> assignment</em><em>.</em><em>.</em><em>.</em>
Answer:
d=√((x_2-x_1)²+(y_2-y_1)²)
Step-by-step explanation:
use your brain and fill in the variables
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);
}
}