// 5.4.1Exercises.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; int main() { float temp = 0.0f; int precision = 1; cout << "What is your temprature: "; cin >> temp; cout.width(6); cout.precision(1); cout << fixed << temp; }