#include <stdio.h>int main(void){ float c,f; printf("请输入华氏温度:"); scanf("%f",&f); c=5/9*(f-32); printf("华氏温度:%.2f,摄氏温度:%.2f\n",f,c);}结果为0