Run ID:155822
提交时间:2026-06-14 09:41:12
#include <stdio.h> #include <math.h> int main() { double fahrenheit; scanf("%lf", &fahrenheit); double celsius = 5.0 / 9.0 * (fahrenheit - 32); celsius = round(celsius * 100) / 100; printf("%.2f\n", celsius); return 0; }