OOMPL :Weather report
//============================================================================ // Name : weather_rep.cpp // Author : Parashar // Version : // Copyright : Do not try this at home :p // Description : Hello World in C++, Ansi-style //============================================================================ #include <iostream> using namespace std; class weather { public: int day,h_temp,l_temp; public: weather(); void input(int); void output(); //void average(); }; weather::weather() { day=99; h_temp=999; l_temp=-999; } void weather::input(int counter) { cout<<"enter high temperature"<<endl; cin>>h_temp; cout<<"enter low temperature"<<endl; ...