14 feet is larger because 1 yard is 3 feet. so 4*3=12 ft, and 12ft is less than 14 ft
Answer:
$70.20
Step-by-step explanation:
We need to first find the cost per gallon of the gas.
The person in front bought 15 gals at $40.50. The price of each gallon will therefore be:
40.50 / 15 = $2.70
You need to buy 26 gallons. The cost will be:
26 * 2.70 = $70.20
You will spend $70.20.
Answer:
A
Step-by-step explanation:
An educated guess because I really forgot how to do these
Answer:
<h2>0</h2>
Step-by-step explanation:

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;
}