Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that sums a sequence of integers. Assume that the first integer read with scanf () specifies the number of values remaining to

Write a program that sums a sequence of integers. Assume that the first integer read with scanf () specifies the number of values remaining to be entered. Your program should read only one value each time scanf() is executed.

A typical input sequence might be 5 100 200 300 400 500

Use the below program template to answer each question. The program is created by answering all the questions hence, do not skip any question.

Programming Shell Template

Instructions

Using the Xendesktop, open Visual Studio 2015. Create a new project and add a new .cpp file to the project. Type the programming shell template as stated up above and continue with the following steps below. Be sure to include comments throughout your program for readability purposes.

(Housekeeping): Declare the following variables in your program using appropriate data type. When selecting a data type keep in mind the type of value you want to store, i.e., int, float, character. Also, be sure to use conventional naming standards for all variable declarations.

number

sum

(Hint): Since sum is going to be used for adding the value, it needs to be initialized to zero.

(Display Prompt): Write a printf() statement to ask user for the following message.

(Input):Add a scanf() statement to store user input for the number of values they wish to process.

(Loop structure):Now, you will write a loop structure to iterate for the number of values you want user to input.

To begin with, your loop structure will look like this -

Declare the following variable inside the loop to store the current value. Remember, the scope of this variable is limited to the loop only. It can't be referred or used outside the loop.

value

(Output):Inside the loop, write a display prompt using a printf() statement for user to input a value using the following message.

(Input):Write a scanf() statement to store the value the user keys in from the keyboard into the variable named value.

(Assignment Statement):Here comes the main part of your program. Now, you need to add this value into the variable sum. So write an assignment statement to add the input value.

(Output):Outside of the loop, write a printf() statement to display the value of sum. Remember, the variable sum is declared outside of the loop so it can be referred/used anywhere within the main function. Also, to display the value stored in a variable you need to include a conversion specifier inside of the quotation marks in the printf() and the variable names within the parentheses.

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

Databases And Information Systems 1 International Baltic Conference Dbandis 2020 Tallinn Estonia June 19 2020 Proceedings

Authors: Tarmo Robal ,Hele-Mai Haav ,Jaan Penjam ,Raimundas Matulevicius

1st Edition

303057671X, 978-3030576714

More Books

Students also viewed these Databases questions

Question

3 How the market system answers four fundamental questions.

Answered: 1 week ago