肖声晖 • 1个月前
#include<iostream>
using namespace std;
int main() {
float f,c;
cin>>f; c =(f-32)*5.0/9.0;
printf("%.4f\n",c);
return 0;
}
评论:
快