3 条题解
- 1
信息
- ID
- 6816
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- 递交数
- 85
- 已通过
- 37
- 上传者
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define MP(a,b) make_pair(a,b)
int main() {
ios::sync_with_stdio ( false );
double F;
cin >> F;
cout << fixed << setprecision ( 5 ) << 5 * ( F - 32 ) / 9 << endl;
return 0;
}