What is the output of the following C++ code?
double salary[5] = {25000, 36500, 85000, 62500, 97000};
double raise = 0.03;
cout << fixed << showpoint << setprecision(2);
for (int i = 0; i < 5; i++)
cout << (i + 1) << " " << salary[i] << " " << salary[i] * raise << endl;
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.