华氏摄氏度转化为摄氏度代码#include<stdio.h>int main(){ float F,C; scanf("%f",&F); C=1.0*5/9*(F-32); printf("%f",C); return 0;}