#include <math.h>
#include <stdio.h>
double tem(float f)
{
double c;
c=(5/9.0)*(f-32);
return (c);
}
void main()
{
float f;
double c;
printf("请输入f: ");
scanf("%f",&f);
c=tem(f);
printf("c=%f",c);
}
虽然不懂什么意思但是我把你的程序稍微改了一下,输入不同的数结果就不一样了!
#include <stdio.h>
double tem(float f)
{
double c;
c=(5/9.0)*(f-32);
return (c);
}
void main()
{
float f;
double c;
printf("请输入f: ");
scanf("%f",&f);
c=tem(f);
printf("c=%f",c);
}
虽然不懂什么意思但是我把你的程序稍微改了一下,输入不同的数结果就不一样了!
现在很辛苦,因为你再走上坡路!