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 0s 5368KB
stdin
Standard input is empty
stdout
32.000000