题解 | 温标转换
温标转换
https://www.nowcoder.com/practice/41ceb724a9e843ecad8192cfbea56466
#include <iostream>
using namespace std;
int main() {
float c, k, f;
cin >> k;
c = k - 273.15;
f = c * 1.8 + 32;
cout << f << endl;
return 0;
}
// 64 位输出请用 printf("%lld")
查看27道真题和解析