出用专题

例3.1有人用温度计测量出用华氏法表示的温度

#include<stdio.h>int main(){float f,c;f=64.0;c=(5.0/9)*(f-32);printf("f=%f\nc=%f\n",f,c);return 0;} 运行结果如下: