摘要: /*Print Fahrenheit-Celsius table: for fahr =0, 20, ... ,300*/void ConvertFahrenheittoCelsius(){ int Fahr, Celsius; int lower, higher, step; lower = 0; higher = 300; step = 20; while (lower < higher) { Fahr = lower; Celsius = 5 * (Fahr - 32) / 9; printf("... 阅读全文
posted @ 2014-02-28 15:25 木子酱要努力 阅读(142) 评论(0) 推荐(0) 编辑