#include #include "thing.h" using namespace std; int main() { int temp1, temp2; Thing t1(12, 100); t1.Show(); cout << '\n'; t1.Set(3,400); t1.Show(); cout << '\n'; Thing t2; // default constructor return 0; }