View Code of Problem 26

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

Double click to view unformatted code.


Back to problem 26