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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started