#include<stdio.h> int main() { float c,f; while(scanf("%f",&f)!=EOF) { c=(f-32)*5.0/9; printf("%.3f\n",c); } return 0; }
#include<stdio.h> int main() { float c,f; while(scanf("%f",&f)!=EOF) { c=(f-32)*5.0/9; printf("%.3f\n",c); } return 0; }
转载于:https://www.cnblogs.com/Estwind/p/9720168.html