Ask Question
9 December, 04:11

Write a program that outputs a moving average. For a series of whitespace delimited integers (note, the running average should be rounded to the hundredth place. However, if a non-positive number is encountered, the average should be reset and a newline character emitted. Otherwise, the running averages should be separated by a space.

+2
Answers (1)
  1. 9 December, 05:10
    0
    using std::cin; using std::cout; using std::endl;

    double input;

    double count = 0;

    double sum;

    int main () {

    while (cin >> input) {

    if (input > 0) {

    count++;

    sum + = input;

    cout << (sum / count) << " ";

    }

    else{

    count = sum = 0;

    }

    }

    }

    Explanation:

    This computes the moving average as you desire in C++. The else{} block resets the sum and count to 0 if a non-positive number is encountered.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a program that outputs a moving average. For a series of whitespace delimited integers (note, the running average should be rounded ...” 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