Answer:
cout << fixed << setprecision(2) << outsideTemperature << endl;
Step-by-step explanation:
We need to use fixed and setprecision()
fixed allows to write the values in fixed point notation.
setprecision() allows us to specify how many digits we want in the value
In order to create a new line, endl must be added at the end