Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

4.3.4: While loops with numbers. Use cin to read integers from input until -99 is read. For each remaining integer read before -99, if the

4.3.4: While loops with numbers.

Use cin to read integers from input until -99 is read. For each remaining integer read before -99, if the integer is negative, output the integer followed by a newline and add the integer to partialSum. Ex: If the input is -8 9 -12 -99, then the output is: -8 -12 The sum of all negative values is -20

#include using namespace std;

int main() { int inputNumber; int partialSum;

cin>>inputNumber; while (inputNumber !=-99) { if (inputNumber<0) { cout<

cout << "The sum of all negative values is " << partialSum << endl;

return 0; }

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

Pro PowerShell For Database Developers

Authors: Bryan P Cafferky

1st Edition

1484205413, 9781484205419

More Books

Students also viewed these Databases questions

Question

What is DDL?

Answered: 1 week ago