21天养成计划-21
F(华氏度)转C(摄氏度)
#include <stdio.h>
void main()
{
float F,C;
printf( “please input the Fahrenheit :\n” );
scanf(" %f ",&F);
C=(F-32)*5/9.0;
printf( “the Celsius degree is :%.2f \n” ,C);
return 0;
}
04-21
868
05-05
787
01-26
2万+
01-29
4033