/* L3-4.cpp (Missing Decimal) Enter 98.6 for temperature. Explain why 98.6 is not printed */ #include using namespace std; int main() { int x; double temp; cout << "Enter temperature" << endl; cin >> x; temp = x; cout <<"temperature is " << temp << endl; return 0; }