#include <stdio.h> int main() { double K = 0.0, F = 0.0; scanf("%lf", &K);//K值 F = ((K - 273.15) * 1.8) + 32;//换算华氏度 printf("%lf", F); return 0; }