#include #include "base_weather.h" using namespace std; base_weather::base_weather(double h, double w): absolute_humidity {h}, wind_speed {w} { } void base_weather::print() const { cout << "absolute_humidity = " << absolute_humidity << " grams per cubic meter\n" << "wind_speed = " << wind_speed << " kilometers per hour\n"; }