C程序设计语言 练习1-4

练习1-4:编写一个程序,打印摄氏温度转换为相应华氏温度的转换表。 #include <stdio.h> /* 当celsius = 0, 20, 40, ..., 300时,打印摄氏温度与华氏温度对照表*/ int main(void) { float fahr, celsius; int lower = 0; int upper = 300; int s
相关文章
相关标签/搜索