C语言华氏度转换摄氏度

程序的功能是:从键盘上输入一个华氏温度,能够输出相应的摄 氏温度,输出结果保留 2 位小数。华氏温度 F 与摄氏温度 c 的转换关系为: C = ( − 32)*5/9

(源代码)

#include

int main()

{

   double f,c;

   

   printf("请输入华氏温度\n℉=");

   scanf("%lf",&f);

   c=5.0/9*(f-32);

   printf("摄氏度\nc=%.2lf\n",c);

   return 0;

}

#include
int main()
{
	double f,c;
    
	printf("请输入华氏温度\n℉=");
	scanf("%lf",&f);

	c=5.0/9*(f-32);

	printf("摄氏度\nc=%.2lf\n",c);
	return 0;
}

你可能感兴趣的:(C语言程序设计,c语言,c#,青少年编程)