kunshao 题解分享 · 2025/3/7
温度转换 - 题解
``` #include <bits/stdc++.h> using namespace std; int main() { double f; cin >> f; double c; c = 5*(f-32)/9; cout << fixed << setprecision(5) << c; return 0; } ```
0 0 0 1