#include using namespace std; int main() { double input; char Q; cout << "Simple temperature converter" << "\n"; cout << "Select conversion type (C F or Q for quit): "; cin >> input; if (input == Q) { cout << "Quitting..." << endl; } return(0); } // // Created by fuze on 8/13/22. //