当前位置: 代码迷 >> C语言 >> [求助]那个地方出错了!~!~!!
  详细解决方案

[求助]那个地方出错了!~!~!!

热度:208   发布时间:2007-05-12 06:36:21.0
[求助]那个地方出错了!~!~!!

求的是3个数字中最大的那个
int main()
{ int a,b,c;
printf("please input numbers:\n");
canf("%d%d%d",a,b,c);
if(a>b&&a>c) printf(a);
elseif(b>a&&b>c) printf(b);
else printf(c);
getch();
}
为什么程序运行不了那??? 那个地方出错了???


----------------解决方案--------------------------------------------------------

错的不是一点半点阿

#include<stdio.h>
#include<stdlib.h>
int main()

{
int a,b,c;
printf("please input numbers:\n");
scanf("%d%d%d",&a,&b,&c);

if(a>b&&a>c)
printf("%d",a);

else if(b>a&&b>c)
printf("%d",b);

else printf("%d",c);
getch();
return 0;
}


----------------解决方案--------------------------------------------------------

#include<stdio.h>
#include<stdlib.h>
int main()

{
int a,b,c;
printf("please input numbers:\n");
scanf("%d%d%d",&a,&b,&c);

if(a>b&&a>c)
printf("%d",a);

else if(b>a&&b>c)
printf("%d",b);

else printf("%d",c);
getch();
return 0;
}


----------------解决方案--------------------------------------------------------
#include<stdio.h>
#include<stdlib.h>
这两行语句起的是什么作用
c中每个程序后面都要有 getch();吗
还有前面在scanf中已经强调了a,b,c是%d,后面在输出时为什么还要强调%d那
----------------解决方案--------------------------------------------------------
以下是引用panmingbo在2007-5-12 6:53:15的发言:
#include<stdio.h>
#include<stdlib.h>
这两行语句起的是什么作用
c中每个程序后面都要有 getch();吗
还有前面在scanf中已经强调了a,b,c是%d,后面在输出时为什么还要强调%d那

#include<stdio.h>
#include<stdlib.h>

是头文件..当要用到里面所包含的函数时就要把相关的头文件包含进来.
%d你就当做语法格式去记吧..


----------------解决方案--------------------------------------------------------
可是我看书上有很多例子都没有写头文件呀&lt;&lt;  怎么知道那个头文件包含那些函数
----------------解决方案--------------------------------------------------------
int a,b,c,t;
printf("please input numbers:\n");
scanf("%d%d%d",&a,&b,&c);
if(a>b)
{a=t;
t=b;
b=a;}
if(a>c)
{a=t;
t=c;
c=a;}
if(b>c)
{b=t;
t=c;
c=b;
}
----------------解决方案--------------------------------------------------------

getch()的定义在conio.h中

查库函数手册


----------------解决方案--------------------------------------------------------
请问这个#include<stdlib.h>头文件包含了哪个函数啊?
谢谢

----------------解决方案--------------------------------------------------------
  相关解决方案