Chapter 9: Problem 23
What is the output of the following \(\mathrm{C}++\) code? const double PI = 3.14159; double cylinderRadii[5] = {3.5, 7.2, 10.5, 9.8, 6.5}; double cylinderHeights[5] = {10.7, 6.5, 12.0, 10.5, 8.0}; double cylinderVolumes[5]; cout << fixed << showpoint << setprecision(2); for (int i = 0; i < 5; i++) cylinderVolumes[i] = 2 * PI * cylinderRadii[i] * cylinderHeights[i]; for (int i = 0; i < 5; i++) cout << (i + 1) << " " << cylinderRadii[i] << " " << cylinderHeights[i] << " " << cylinderVolumes[i] << endl;
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.