The method of successive differences uses subtraction to the one number to the next and the process goes on until the difference settles constant which is not equal to zero. In this case, the constant difference reaches 25. Reversing the process to get the next term, the answer is 2509.
The answer to this question is that the trains will meet after 3 hours.
We can work this out by considering that is the closing speed of the two
trains is (50+60=)110 miles per hour, then this must mean that the
combined distance that the trains need to travel before they meet is 330
miles. If the time that is taken to travel 330 miles at 110 miles per
hour, then you simply need to divide 330/110 to find your answer - 3
hours.
Answer: $14.40
10% of $18 = $1.80 (just divide it by 10)
$1.80 x 2 = $3.60
20% of $18 = $3.60
since it’s a discount, you subtract from the original price so:
$18 - $3.60 = $14.40
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;
}