Devi indicare tipo e precisione delle costanti

codice:
float celsToFah(float cels)
{
	return 9.0f / 5.0f * cels + 32.0f;
}

float fahToCels(float fah)
{
	return 5.0f / 9.0f * (fah - 32.0f);
}