Answer:
Wich one I can help maybe
Answer: No
Step-by-step explanation: no because one is negative 1 3/4 and the other one isint in the negatives
Answer:
what topic???????????????????
Answer:
Judy = $5/hr
Ben = $4/hr
Step-by-step explanation:
Judy's hours at work - x
Ben's hours at work - y
8x + 10y = 80
9x + 5y = 65
Given these two equations above, we get:
10y = 80 - 8x, which means y = 8 - 0.8x.
Substitute y in the second equation with 8 - 0.8x, so we have:
9x + 5 (8 - 0.8x) = 65
9x + 40 - 4x = 65
5x = 25
x = 5
Come back to the first equation, substitute x:
8*5 + 10y = 80
10y = 80 - 40
y = 4
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;
}