Question: I need to complete these exercises with a given code. Every instruction is included in the pictures. The code I need to modify with the

I need to complete these exercises with a given code. Every instruction is included in the pictures.I need to complete these exercises with a given code. Every instruction

is included in the pictures. The code I need to modify with The code I need to modify with the exercises: the exercises: #include #include using namespace std; // This program will demonstrate the scope rules. // PLACE YOUR NAME HERE const double PI =

#include

#include

using namespace std;

// This program will demonstrate the scope rules.

// PLACE YOUR NAME HERE

const double PI = 3.14;

const double RATE = 0.25;

void findArea(float, float&);

void findCircumference(float, float&);

int main()

{

cout

float radius = 12;

cout

cout

{

float area;

cout

cout

// Fill in the code to call findArea here

cout

cout

}

{

float radius = 10;

float circumference;

cout

cout

// Fill in the code to call findCircumference here

cout

cout

}

cout

cout

return 0;

}

// *********************************************************************

// findArea

//

// task: This function finds the area of a circle given its radius

// data in: radius of a circle

// data out: answer (which alters the corresponding actual parameter)

//

// ********************************************************************

void findArea(float rad, float& answer)

{

cout

cout

// FILL in the code, given that parameter rad contains the radius, that

// will find the areato be stored in answer

}

// ******************************************************************************

// findCircumference

//

// task: This function finds the circumference of a circle given its radius

// data in: radius of a circle

// data out: distance (which alters the corresponding actual parameter)

//

// *****************************************************************************

void findCircumference(float length, float& distance)

{

cout

cout

// FILL in the code, given that parameter length contains the radius,

// that will find the circumference to be stored in distance

}

Exercise 1: Fill in the following chart by listing the identifiers (function names, variables, constants) GLOBALMain Main Main Area Circum- (inner 1)(inner 2) Exercise 2: For each cout instruction that reads: cout

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!