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
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
Get step-by-step solutions from verified subject matter experts
