View Code of Problem 26

#include <iostream>
#include <iomanip>
#include <cmath>

using namespace std;
int main( )
{
    int f;

    cin >> f;
    cout<< fixed <<setprecision(2) << 5/9*(f-32.00);

    return 0;
}

Double click to view unformatted code.


Back to problem 26