回 帖 发 新 帖 刷新版面

主题:求助

那位朋友可以帮我写一下华氏和摄氏的转换  前提用函数写

回复列表 (共2个回复)

沙发

void bbs(double hswd)
{
       double ssd;     
       ssd=(hswd-32)*5/9;
       printf("\n");
       printf("摄氏温度"+"="+"(华氏温度"+"-"+i+")"+"*"+5+"/"+9);
       printf("***************************");
       printf("摄氏温度为:"+ssd);
       printf("华氏温度为:"+hswd);
  }

板凳


# include <stdio.h>
int main()
{
    double celsius;
    double fahr;
    double f( double n);
    printf("请输入华氏温度:");
    scanf("%lf", &fahr);
    celsius = f( fahr );
    //celsius = 5 * (fahr-32)/9;
    printf("其对应的摄氏温度为:");
    printf("%lf", celsius);
    return 0;
}
double f(double n)
{
    double y;
    y = 5 * (n-32) / 9;
    return y;
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册