#include<iostream>using namespace std;int main(){ double a,b; cin>>a; b=(a-32)*(5/9); cout<<b;
system("pause"); return 0;}
題目說:「精確到小數點以下三位。」我看見你已經 AC,我想你已經找到方法了。