LAB 5.3 Working with the for Loop Bring in program for.cpp from the Lab 5 folder (this is Sample Program 5.5 from the Pre-lab Reading Assignment). This program has the user input a number n and then finds the mean of the first n positive integers. The code is shown below: // This program has the user input a number n and then finds the // mean of the first n positive integers   // PLACE YOUR NAME HERE   #include using namespace std;   int main() { int value; // value is some positive number n int total = 0; // total holds the sum of the first n positive numbers  int number; // the amount of numbers float mean; // the average of the first n positive numbers   cout << "Please enter a positive integer" << endl; cin >> value;   if (value > 0) { for (number = 1; number <= value; number++) { total = total + number; }// curly braces are optional since there is only one statement   mean = static_cast(total) / value; // note the use of the typecast // operator here  cout << "The mean average of the first " << value << " positive integers is " << mean << endl; }   else cout << "Invalid input - integer must be positive" << endl;   return 0; } Exercise 1: Why is the typecast operator needed to compute the mean in the statement mean = static_cast(float)(total)/value;? What do you think will happen if it is removed? Modify the code and try it. Record what happens. Make sure that you try both even and odd cases. Now put static_cast total back in the program. Exercise 2: What happens if you enter a float such as 2.99 instead of an integer for value? Try it and record the results. Exercise 3: Modify the code so that it computes the mean of the consecutive positive integers n, n+1, n+2, . . . , m, where the user chooses n and m. For example, if the user picks 3 and 9, then the program should find the mean of 3, 4, 5, 6, 7, 8, and 9, which is 6.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 20PE
icon
Related questions
Question

LAB 5.3 Working with the for Loop
Bring in program for.cpp from the Lab 5 folder (this is Sample Program 5.5 from
the Pre-lab Reading Assignment). This program has the user input a number n and
then finds the mean of the first n positive integers. The code is shown below:

// This program has the user input a number n and then finds the

// mean of the first n positive integers

 

// PLACE YOUR NAME HERE

 

#include <iostream>

using namespace std;

 

int main()

{

int value; // value is some positive number n

int total = 0; // total holds the sum of the first n positive numbers 

int number; // the amount of numbers

float mean; // the average of the first n positive numbers

 

cout << "Please enter a positive integer" << endl;

cin >> value;

 

if (value > 0)

{

for (number = 1; number <= value; number++)

{

total = total + number;

}// curly braces are optional since there is only one statement

 

mean = static_cast<float>(total) / value; // note the use of the typecast

// operator here 

cout << "The mean average of the first " << value

<< " positive integers is " << mean << endl;

}

 

else

cout << "Invalid input - integer must be positive" << endl;

 

return 0;

}

Exercise 1: Why is the typecast operator needed to compute the mean in the
statement mean = static_cast(float)(total)/value;? What do you think
will happen if it is removed? Modify the code and try it. Record what happens.
Make sure that you try both even and odd cases. Now put static_cast<float>
total back in the program.
Exercise 2: What happens if you enter a float such as 2.99 instead of an integer
for value? Try it and record the results.
Exercise 3: Modify the code so that it computes the mean of the consecutive
positive integers n, n+1, n+2, . . . , m, where the user chooses n and m.
For example, if the user picks 3 and 9, then the program should find the
mean of 3, 4, 5, 6, 7, 8, and 9, which is 6.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 5 steps with 14 images

Blurred answer
Knowledge Booster
Types of Loop
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT