题解 | #温度转换#
温度转换
https://www.nowcoder.com/practice/ba83647087b7447783fa2384da6b3d44
#include <stdio.h> #include <math.h> int main() { float a,b; scanf("%f\n", &a); b= 5.0/9*(a-32); printf("%.3f\n",b); return 0; }
要注意浮点数和整数的转换,尤其是整数做除法时,要用浮点数做被除数或除数才能和浮点数匹配