View Code of Problem 26

#include <stdio.h>
int main(){
	int z;
	float c;
	while(scanf("%d",&z)!=EOF){
		c=5*1.0/9*(z-32);
		printf("%.2f\n",c);
	}
	return 0;
} 

Double click to view unformatted code.


Back to problem 26