fork download
  1. #include <stdio.h>
  2. int main() {
  3. float c;
  4. scanf("%f", &c);
  5. printf("Fahrenheit=%.2f", (c*9/5)+32);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 5324KB
stdin
5
stdout
Fahrenheit=41.00