For question A, the answer is 2. Since the sale sweatshirt if 40% LESS, this means that 60% of the original price still remains. 28.80 x .60 = 17.28
For question B, the answer if 4. You can divide 17 by 20 getting .85
Answer:
1 5/18
Step-by-step explanation:
4/9 = 8/18
5/6 = 15/18
15/18 + 8/18 = 23/18 = 1 and 5/18
Giant spider crab are further from the surface the wolf because -800 is farther down than -300 let say the surface is 0 going down is negative you react -300 before -800
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;
}