home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / qc_prog / chap03 / convert.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-04-06  |  337 b   |  14 lines

  1. /* convert.c -- converts Farenheit temprature       */
  2. /*              to Centigrade; gets value from user */
  3.  
  4. main()
  5. {
  6.     float ftemp, ctemp;
  7.  
  8.     printf("What is the temprature in Farenheit? ");
  9.     scanf("%f", &ftemp);
  10.     ctemp = (ftemp - 32.0) * 5 / 9.0;
  11.  
  12.     printf("The temprature in Centigrade is %5.2f", ctemp);
  13. }
  14.