一.程序功能
将输入的天气温度,进行零下摄氏度的比例换算
二、代码
#includeint main(void) { const int FREEZING=0; float temperature; int cold_days=0; int all_days=0; printf("please enter the ten days'temperature.n"); while(scanf("%f",&temperature)==1) { all_days++; if(temperature 三、实验结果



