mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 23:38:47 +00:00
B2013 温度表达转化
R53230089
This commit is contained in:
parent
fc6f52a784
commit
76418f4188
10
Luogu/problem/B2013/B2013.cpp
Normal file
10
Luogu/problem/B2013/B2013.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
double f;
|
||||
cin >> f;
|
||||
cout << fixed << setprecision(5) << 5 * (f - 32) / 9 << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user