#include #include #include "kelvin_cricket.h" using namespace std; int main() { cricket buddy(33); cout << "Fahrenheit == " << buddy.fahrenheit() << "\n\n"; metric_cricket mc(33); cout << "Fahrenheit == " << mc.fahrenheit() << "\n" << "Celsius == " << mc.celsius() << "\n\n"; kelvin_cricket kc(33); cout << "Fahrenheit == " << kc.fahrenheit() << "\n" << "Celsius == " << kc.celsius() << "\n" << "Kelvin == " << kc.kelvin() << "\n"; return EXIT_SUCCESS; }