View Code of Problem 26

#include<iostream>
#include<math.h>
using namespace std;
int main(){
	float F;

	while(cin>>F){
		float c;
		c=5/9*(F-32);
		printf("%.2f\n",c);
		
	}
} 

Double click to view unformatted code.


Back to problem 26