//tell the first day of those three, when the average temp. was the highest #include #include using namespace std; void read(float v[], int); struct maximum { float max_val; int index; }; maximum maxker_b(float v[], int); int main() { int db; maximum m; const int m_val=30; do { cout<<" How many data: "; cin>>db; if(db<3) cout<<" Not enough! "<>h[i]; } } maximum maxker_b(float hom[], int db) { maximum m; //if(db<2) return m; float s=hom[0]+hom[1]+hom[2]; m.max_val=s/3; m.index=0; for(int i=0; i