怎么在下面的框中,按任意键时,继续操作,而不是退出操作
2个回答
展开全部
getchar( )接收任一字符,根这特点可以让程序停在任意位置,然按任键继.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
#include <stdlib.h>
int main()
{
int max(int a,int b);
int a,b,c;
ls:
printf("请接着输:\n");
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
goto ls;
system("pause");
return 0;
}
int max(int a,int b)
{
int c;
if(a>b) c=a;
else c=b;
return c;
}
加一个goto语句就可以了...
#include <stdlib.h>
int main()
{
int max(int a,int b);
int a,b,c;
ls:
printf("请接着输:\n");
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
goto ls;
system("pause");
return 0;
}
int max(int a,int b)
{
int c;
if(a>b) c=a;
else c=b;
return c;
}
加一个goto语句就可以了...
追答
#include
#include
int main()
{
int max(int a,int b);
int a,b,c;
ls:
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d\n",c);
printf("请接着输:\n");
goto ls;
system("pause");
return 0;
}
int max(int a,int b)
{
int c;
if(a>b) c=a;
else c=b;
return c;
}
放下面就行了...
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询