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;
}
If you are looking for volume you want v by itself so your formula would look like this : d*m=v
hope this helps
Answer:
730, 735, 740
Step-by-step explanation:
Let the three consecutive multiples of 5 be, x, x+5 and x+10
Given,
x + x+5 + x+10 = 2205
3x + 15 = 2205
Subtract 15 from both sides,
3x = 2205 - 15
3x = 2190
Divide both sides by 3,
x = 2190/3 = 730
So, x= 730
x+5 = 735
x+10 = 740