View Code of Problem 26

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

int main(){
	
	double a;
	scanf("%lf",&a);
	printf("%.2lf",5*(a-32)/9);

	
}

Double click to view unformatted code.


Back to problem 26