When I type the temperature in Fahrenheint the program returns 0 as a result, where is the error?
#include <cstdlib>
#include <iostream>
#include <conio.h>
#include <string.h>
#include <math.h>
using namespace std;
int main(int argc, char *argv[])
{
float celsius = 0, fah = 0;
char tecla;
cout << "Digite a temperatura em C°:"; cin >> celsius;
fah = (9 * celsius + 160) / 5;
cout << "Temperatura em F°:" << fah << endl;
cout << "Digite a temperatura em F°:"; cin >> fah;
celsius = (fah - 32) * (5/9);
cout << "Temperatura em C°:" << celsius << endl;
system("PAUSE");
return EXIT_SUCCESS;
}