Question: Integer in is read from input. Write a while loop that reads integers from input until a positive integer is read. Then, find the sum

Integer in is read from input. Write a while loop that reads integers from input until a positive integer is read. Then, find the sum of all integers read. The positive integer should not be included in the sum.

Ex: If the input is -42 -31 -39 -26 21, then the output is:

-138

---

#include using namespace std; int main() { int in; int intSum;

intSum = 0; cin >> in;

/* Your code goes here */

cout << intSum << 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!