Answer:
may be 13 I hope this is the right answer
Answer:
28687.5
Step-by-step explanation:
Un gramo equivale a $38,25, por lo que si tenemos 750 de esos gramos, tendríamos que multiplicarlos para obtener el costo total.
Answer:
4x cm.
Step-by-step explanation:
Suares have to have all 4 sides equal. The area of the rectangle (2x8) is 16.
16/4 = 4, so the square has sides of 4cm each to equal an are of 16. (4x4=16)
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;
}
Hello, please consider the following.

Let me know if you need further explanation.
Thank you