#include<stdio.h>
#include<math.h>
int main()
{
double f,c;
// c=5*(f-32)/9;
scanf("%lf",&f);
c=5*(f-32)/9;
printf("%.3f",c);
return 0;}
c语言华氏度转换摄氏度
最新推荐文章于 2024-11-12 21:59:57 发布
#include<stdio.h>
#include<math.h>
int main()
{
double f,c;
// c=5*(f-32)/9;
scanf("%lf",&f);
c=5*(f-32)/9;
printf("%.3f",c);
return 0;}