回 帖 发 新 帖 刷新版面

主题:偶是C语言菜鸟,各位达人,帮忙找个错误!!!

刚学C语言写的程序,运行结果老是错误的,请教各位达人:(偶用的是WIN-TC)
1、————————————————————
#include<stdio.h>
sum(float x,float y);

void main ()
{
float a,b,c;
printf("input tow numbers:\n ");
scanf("%f,%f",&a,&b);
c=sum(a,b);
printf("%f",c);
getch();
}
sum(float x,float y)
{
float t;
t=x+y;
return t;
}
输入:3.6 5.5 
输出:3.000000
2、——————————————————————
#include<stdio.h>
void main ()
{
float a,b,c;
printf("input tow numbers:\n ");
scanf("%f,%f",&a,&b);
c=a+b;
printf("%f",c);
getch();
}
输入:3.6  5.5 
输出:3.600000
3、——————————————

#include<stdio.h>
void main ()
{
float a,b;
printf("input tow numbers:\n ");
scanf("%f,%f",&a,&b);
printf("%f",a+b);
getch();
}
输入:3.6 5.5
输出:3.600000
4、——————————————
#include<stdio.h>
void main ()
{
float a=3.6,b=5.5;
printf("%f",a+b);
getch();
}
输出:9.100000
??????????帮帮忙,偶已经想了N多天了!!![em10]

回复列表 (共6个回复)

沙发


#include<stdio.h>
float sum(float x,float y);

void main ()
{
float a,b,c;
printf("input tow numbers:\n ");
scanf("%f,%f",&a,&b);
c=sum(a,b);
printf("%f",c);
getch();
}
float sum(float x,float y)
{
float t;
t=x+y;
return t;
}
注意输入数据是  3.6,3.7
中间不是空格,是逗号!

板凳

呜呜~~喜极而泣啊!
终于找到错误了!!
感谢!感谢!非常感谢!!!!

3 楼

没有定义函数
float sum()

4 楼

我编译了你的第一个程序,得到的答案是“Floating point error :domain.",连我也糊涂了...

5 楼

我编译了第二个,得到的答案是“-NAN”...

6 楼

算两个数的和的吧
#include<stdio.h>
void main ()
{
    float a,b,c;
    printf("input tow numbers:\n ");
    scanf("%f,%f",&a,&b);  //注意输入格式是两个数中间用,隔开的
    c=a+b;
    printf("%f",c);
    getchar();  //我用的是vc6++  getch改成getchar就可以了
}

我来回复

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