home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / MBUG / MBUG150.ARC / C-STUFF1.LBR / TEMP1.C < prev    next >
Text File  |  1979-12-31  |  640b  |  25 lines

  1. /* print Fahrenheit-Celsius table
  2.     for f = 0, 20, ..., 300 */
  3.  
  4. main()
  5.     {
  6.     int lower, upper, step;
  7.     float fahr, celsius;
  8.  
  9.     lower = 0;    /* lower limit of temperature table */
  10.     upper = 300;    /* upper limit */
  11.     step  = 20;    /* step size  */
  12.     fahr = lower;    /* fahr start */
  13.  
  14.     printf("\nFahrenheit - Celsius\n");    /* header */
  15.     printf("--------------------\n");
  16.  
  17.     while (fahr <= upper)
  18.  
  19.         {
  20.         celsius = (5.0/9.0) * (fahr-32.0);
  21.         printf("%4.0f \t %6.1f\n", fahr, celsius);
  22.         fahr =fahr + step;
  23.         }
  24.     }
  25.