fork download
  1. #include <stdio.h>
  2. float C(float F)
  3. {
  4. return (F-32)*5.0/9.0;
  5. }
  6. int main(void) {
  7. // your code goes here
  8. float F;
  9. scanf("%f",&F);
  10. printf("%f",C(F));
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
273
stdout
133.888885