题解 | #温度转换#
温度转换
https://www.nowcoder.com/practice/ba83647087b7447783fa2384da6b3d44
#include <iomanip> #include <iostream> using namespace std; int main() { double c ,f; cin >> f; c = 5.0/9.0*(f-32); cout << fixed << setprecision(3) << c << endl; }