View Code of Problem 26

#include<cstdio>
using namespace std;
int main()
{
	double a,res;
	while(scanf("%lf",&a)!=EOF){
		res=5.0/9.0*(a-32);
		printf("%.2lf\n",res);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 26