(Modify)
a. Modify Program to calculate the speed of a car whose received radar frequency is 2.00000035 × 1010 sec-1.
b. Compile and run the program written for Exercise a.
Program:
#includeusing namespace std;int main(){double speed, fe, fr;fe = 2e10;fr = 2.0000004e10;speed = 6.685e8 * (fr - fe) / (fr + fe);cout << “The speed is ” << speed << “ miles/hour ” << endl;return 0;}
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.