aboutsummaryrefslogtreecommitdiff
path: root/4a/5.4.1Exercises/5.4.1Exercises.cpp
blob: fd837c6f00a606aee905043cfe642b5708c51f5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 5.4.1Exercises.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
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;
}