Question: 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

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!