Ask Question

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.

+5
Answers (1)
  1. 7 March, 16:00
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers