C - The C Answer (2nd Edition) - Exercise 1-5

/*
Modify the temperature conversion program to print the table in reverse order, 
that is, from 300 degrees to 0.
*/

#include <stdio.h>

/* print Fahrenheit-Celsius table in reverse order */
main()
{
    int fahr;
    
    for(fahr = 300; fahr >= 0; fahr -= 20)
    {
    	printf("%3d %6.1f\n", fahr, (5.0 / 9.0) * (fahr - 32));
    }
}

/* Output:

300  148.9
280  137.8
260  126.7
240  115.6
220  104.4
200   93.3
180   82.2
160   71.1
140   60.0
120   48.9
100   37.8
 80   26.7
 60   15.6
 40    4.4
 20   -6.7
  0  -17.8
Press any key to continue . . .

*/
posted @ 2017-05-27 14:06  llguanli  阅读(182)  评论(0编辑  收藏  举报