#include #include using std::cout; using std::setprecision; using std::endl; using std::ios; int main() { float temp; cout << "Enter Your Temperature: \n"; std::cin >> temp; cout << "Your Temperature is "; cout.setf(ios::fixed); cout << setprecision(5) << temp << endl; return 0; }