Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}
Answer:
5x + 15 = -5x - 15
10x = -30
x = -3
y = 5(-3) + 15 = -15 + 15 = 0
(-3,0)
Step-by-step explanation:
Answer:
10 more girls
Step-by-step explanation:
So here 2/3 of 24 ran for first race
Then it gives us that 16 girls ran for first race.
Next, 1/4 of 24 ran for second race
That is 6 girls
The remaining girls ran for the third race,
24 - 22
2 girls
16 - 6 = 10
So for first race 10 more girls ran
Answer:
2.38 miles
Step-by-step explanation:
From Given diagram:
In ΔABC,
AC=2.5 miles
BC= 3.7 miles
∠BCA= 39.4°
Now as we have two sides and an angle, using law of cosines to find the third side:
c= √(a^2+b^2-2abcosα
AB=√(AC)^2 + (BC)^2 - 2(AC)(BC)cosα
=√(2.5)^2 + (3.7)^2 - 2(2.5)(3.7)cos(39.4°)
=√(2.5)^2 + (3.7)^2 - 2(2.5)(3.7)(0.77)
=√(5.695)
= 2.38 !