#include using namespace std; using std::cout; using std::cin; using std::endl; int main() { float Giventemp, C, F, celsius, fahrenheit; cout << "Will your temperature be in celsius(C) or fahrenheit(F)?"; cin >> Giventemp; if (Giventemp = C) { cout << "Please enter a temperature: "; cin >> celsius; } if (Giventemp = F) { cout << "Please enter a temperature: "; cin >> fahrenheit; } }