View Code of Problem 26

#include<stdio.h>
#include<math.h>
int main()
{
	float f,c;
	scanf("%f",&f);
	c=5*(f-32)/9;
	printf("%.2f",c);
} 

Double click to view unformatted code.


Back to problem 26