Suppose that the input is 5 3 8. What is the output of the following code? Assume all variables are properly declared.
cin >> a >> b >> c;
for (j = 1; j < a; j++)
{
d = b + c;
b = c;
c = d;
cout << c << " ";
}
cout << 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.