View Code of Problem 26

#include<stdio.h>

main()
{
  float c;
  int f;
  while(scanf("%d",&f)!=EOF)
  {
  	c=5.0/9*(f-32);
  	printf("%.2f\n",c);
   } 
   
}

Double click to view unformatted code.


Back to problem 26