C

/*
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
", 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 . . .

*/
原文地址:https://www.cnblogs.com/llguanli/p/6912620.html