Answer:
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.