Run ID:104475

提交时间:2025-01-05 10:50:20

#include<stdio.h> int main(){ double F,C; scanf("%lf",&F); C=(F-32)*5/9; printf("%.2f",C); return 0; }