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