主题:偶是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]
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]