返回列表 發帖
#include<bits/stdc++.h>
using namespace std;
int main()
{
    float f;
    cin>>f;
    printf("%.3f",(f-32)*5/9);
    return 0;
}

TOP

返回列表