#include #include "temp.h" using namespace std; int main() { Temperature t1; // expect this to be 0 Celsius cout << "t1 = "; t1.Show(); cout << '\n'; Temperature t2(45.6, 'F'); // cout << "t2 = "; t2.Show(); // expect "45.6 Fahr" cout << '\n'; Temperature t3; // expect this to be 0 Celsius cout << "t3 = "; t3.Show(); cout << '\n'; return 0; }