View Code of Problem 26

#include <iostream>
using namespace std;

int main(){
  double n;
  while(scanf("%lf",&n)!=EOF){
    printf("%.2lf",5/9*(n-32));
  }
}

Double click to view unformatted code.


Back to problem 26