View Code of Problem 26

#include<stdio.h>
#include<math.h>
#include<string.h>		
void main()
{
	int a;
	double c;
	   while(scanf("%d",&a)!=EOF)
	   {
	    c=5.0/9*(a-32);
		printf("%.2lf\n",c);
	   }

}

Double click to view unformatted code.


Back to problem 26