View RunningAverage.h
#ifndef _RUNNING_AVERAGE_H | |
#define _RUNNING_AVERAGE_H | |
#include <vector> | |
#include <iostream> | |
#include <cmath> | |
using namespace std; | |
class RunningAverage | |
{ |