3. 编写程序,将摄氏温度(c)转换为华氏温度(F),转换公式为:F=(9c/5)+32.
3. 编写程序,将摄氏温度(c)转换为华氏温度(F),转换公式为:F=(9c/5)+32.
日期:2013-06-21 22:32:45 人气:2
#include "stdio.h"void main(){ int c,f; scanf("%d",&c); f=9*c/5+32; printf("the f is %d\n",f);}C语言的。
3. 编写程序,将摄氏温度(c)转换为华氏温度(F),转换公式为:F=(9c/5)+32.