题解 | 温标转换
温标转换
https://www.nowcoder.com/practice/41ceb724a9e843ecad8192cfbea56466
#include <bits/stdc++.h>
using namespace std;
int main() {
double K, C, F;
cin >> K;
C = K - 273.15;
F = C * 1.8 + 32;
printf("%.9f", F);
return 0;
}