D=3G divided by h hope this helped!
The coefficients are 15 and 85.
the variables are x and y.
85 represents 85 dollars for each x, which is the number of shifts.
15 represents 15 dollars for each y, which is the number of dog walking jobs.
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:
#4 - y= 1/2x-2 #5- y=1/3x+3
x y x y
0 -2 0 3
2 -1 3 4
4 0 6 5
6 1 9 6
Step-by-step explanation:
Hope that helped :)