Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Add to the following code to output the diameter, circumference and area of the circle; each on a new line. Each modified line must contain
Add to the following code to output the diameter, circumference and area of the circle; each on a new line. Each modified line must contain an arithmetic operator and should use the existing variables.
#include
int main()
{
const float PI = 3.14159;
const float radius = 5.6;
std::cout << "radius:\t\t" << radius << std::endl;
std::cout << "diameter:\t";
std::cout << "circumference:\t";
std::cout << "area:\t\t";
return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started