View Code of Problem 26

#include<stdio.h>
int main()
{
	float x,y;
	while(scanf("%f",&x) != EOF) 
	{
		y = (5.0) / 9 * (x - 32);
		printf("%.2f\n",y);
	}
}

Double click to view unformatted code.


Back to problem 26