View Code of Problem 26

#include<stdio.h>
#include<math.h>
#include<stdlib.h>


int main(){
	
	float c,f;
	while(scanf("%f",&f)!=EOF){
		

		printf("%.2f",5.0/9*(f-32));
	
	
	}



}
	

Double click to view unformatted code.


Back to problem 26