#include <math.h>
#include <iostream>
using namespace std;
class statcalc
{private:
int dataset[10];
public:
void enter(int);
void constructor(int);
int getsum();
void print();
int getdata();
double getstandard();
double getmean();
int getmax();
int getmin();
};
cout<<"1. insert values of array."<<endl;
cout<<"2. print the content of array."<<endl;
cout<<"3. calculate the sum of all the items in the array."<<endl;
cout<<"4. calculate the average of all the items."<<endl;
cout<<"5. calculate the standard deviation of the items."<<endl;
cout<<"6. find the largest number of all the items that have be added to the dataset."<<endl;
cout<<"7. find the smallest number of all the items that have be added to the dataset."<<endl;
cout<<"8. Exit."<<endl;
cout<<endl;
cout<<endl;
cout<<endl;
cout<<"*******************************"<<endl;
cout<<"* *"<<endl;
cout<<"* Best Engeneers In The Wolrd *"<<endl;
cout<<"* <3 <3 *"<<endl;
cout<<"* Eng.Manar Jradat *"<<endl;
cout<<"* Eng.Sarah Alshaer *"<<endl;
cout<<"* <3 <3 *"<<endl;
cout<<"* *"<<endl;
cout<<"*******************************"<<endl;