c学习吧 关注:40贴子:144
  • 2回复贴,共1

高手帮忙看下这程序哪里出错了

只看楼主收藏回复

题目要求是输入华氏温度然后屏幕输出摄氏温度,华氏温度和摄氏温度的转换公式为c=(F-32)/1.8.....程序如下/* HELLO.C -- Hello, world */ #include "stdio.h"
#include "conio.h" main()
{ char c,f;
scanf("%d,%d",&c,&f);
c=(f-32)/1.8;
printf("%d",c);
getch();
}不管输入什么输出都是-17.请问哪里编写错误了??


1楼2012-04-05 21:11回复
    Hello, world */ #include "stdio.h"
    #include "conio.h" main()
    { float c,f;
    scanf("%f",&f);
    c=(f-32)/1.8;
    printf("%3.2f",c);
    getch();


    2楼2012-04-14 13:09
    回复