输入一般可以用scanf输出用printf如第一题#include<stdio.h>
int main(){double c,F;scanf("%lf",&F);c=5*(F-32)/9;printf("%.2f\n",c);return 0;}