Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

NEED HELP COMPLETING THIS CODE! PLEASE ZOOM IN IF NEEDED! Write a program that asks the user for a positive integer value between 2 and

NEED HELP COMPLETING THIS CODE! PLEASE ZOOM IN IF NEEDED!

image text in transcribed

image text in transcribed

Write a program that asks the user for a positive integer value between 2 and 100 inclusively. The program should use a while loop to compute the sum of all integers from 1 up to the number entered. For example, if the user enters 50, the loop will find the sum of 1,2,3,4, 50 and after the loop terminates, output the message, "Sum of numbers 1 + 2 + ... + 50 is 1275". If the user enters an integer less than 2 or an integer greater than 100 the program should give the error message, "Invalid entry. Integer should be between 2 and 100." and then terminate, Hint: You will need a counter and an accumulator. If needed, reference slide 2 of Lect5a_Part2_while_cont.pptx. Create a limit variable, take the input from user and populate it, and then use it in the while loop in place of 10. When the input as is shown in Figures 1 & 3, your program should produce the output as shown in Figures 2 & 4. Figure 1: (sample input) 50 Figure 2: (sample output) Sum of numbers 1 + 2 + + 50 is 1275 Figure 3: (sample input) 2 Figure 4: (sample output) Sum of numbers 1 + 2 is 3 5 #include

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

C++ Database Development

Authors: Al Stevens

1st Edition

1558283579, 978-1558283572

More Books

Students also viewed these Databases questions

Question

Write short notes on Interviews.

Answered: 1 week ago

Question

Define induction and what are its objectives ?

Answered: 1 week ago