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