Ask Question
10 May, 18:25

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

+3
Answers (1)
  1. 10 May, 18:45
    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?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers