Answer: yes
Step-by-step explanation:
There is not answer to your equation so technically anything could be X
Answer:
-9/7
Step-by-step explanation:

The answer is 8. 40 / 31 = 1.29032258. Multiply that by 6 and you have 7.74193548. Round up because you can't buy 7.7 cans of dog food.
2x+3(2x-4y)+8y-2
2x+6x-12y+8y-2
8x-12y+8y-2
8x-4y-2
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;
}