Ask Question
17 December, 01:35

Write a loop that reads positive integers from standard input and that terminates when it reads an integers that is not positive. After the loop terminates, it prints out separate by a space on a single line

+4
Answers (1)
  1. 17 December, 02:34
    0
    I found this loop. But it ends like this: After the loop terminates, it prints out the sum of all the even integers read. Declare any variables that are needed.

    int sum=0;

    int num=1;

    while (num > 0) {

    cin >> num;

    if ((num % 2) = = 0 & (num>0)) {

    sum+=num;

    }

    }

    cout << sum;

    I'm not familiar with coding but I think you can work on this loop and edit it according to your requirement.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a loop that reads positive integers from standard input and that terminates when it reads an integers that is not positive. After the ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers