求的是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那
----------------解决方案--------------------------------------------------------
#include<stdio.h>
#include<stdlib.h>
这两行语句起的是什么作用
c中每个程序后面都要有 getch();吗
还有前面在scanf中已经强调了a,b,c是%d,后面在输出时为什么还要强调%d那
#include<stdio.h>
#include<stdlib.h>
是头文件..当要用到里面所包含的函数时就要把相关的头文件包含进来.
%d你就当做语法格式去记吧..
----------------解决方案--------------------------------------------------------
可是我看书上有很多例子都没有写头文件呀<< 怎么知道那个头文件包含那些函数
----------------解决方案--------------------------------------------------------
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>头文件包含了哪个函数啊?
谢谢
----------------解决方案--------------------------------------------------------