#include #include #include #include using namespace std; //myAlgo_transform1.cpp also see int deviation(int); int add (int i, int j) { return i+j; } int mean; static int total1, total; int main() { ostream_iterator< int> output(cout, " "); int n1[] = { 69, 60, 63, 61, 65, 64, 71, 70, 68, 64 }; int n2[] = { 15, 10, 11, 15, 15, 17, 14, 12, 13, 19 }; cout<<"\n Arrays Length : "< Vint1(n1, n1+10); // copy of n1 vector< int> Vstat(n2, n2+10); // copy of n1 vector::iterator it; // cout << "Vint1 original Values :"; for (it=Vint1.begin(); it!=Vint1.end(); ++it) { cout << " " << *it; } cout << endl; cout << "Vstat original Values :"; for (it=Vstat.begin(); it!=Vstat.end(); ++it) { cout << " " << *it; } cout<