dev c++ 程序运行就提示停止工作 5

源代码:#include<stdio.h>intjudge(char,char,char);main(){chara,b,c;printf("Pleaseinputthr... 源代码:#include <stdio.h>
int judge(char,char,char);
main()
{
char a,b,c;
printf("Please input three char:");
scanf("%c %c %c",&a,&b,&c);
if ((a>=65)&&(a<=90)&&(b>=65)&&(b<=90)&&(c>=65)&&(c<=90)&&(a>=97)&&(a<=122)&&(b>=97)&&(b<=122)&&(c>=97)&&(c<=122))
{if (judge(a,b,c))
{printf("The letters are adjacent with each other");}
else
{printf("The letters are not adjacent with each other");}
}
else
{printf("The letters are not adjacent with each other");}
}
int judge(char x,char y,char z)
{
if(((y-x)==1)&&((y-z)==1))
return 1;
else
return 0;

}

可以看到“Please input 。。。”的输出,输完之后就停止工作了。。
展开
 我来答
伴你一世流离
2016-09-18 · 超过41用户采纳过TA的回答
知道小有建树答主
回答量:137
采纳率:100%
帮助的人:52.5万
展开全部
main函数前加一个类型说明符 试一下
int main()
{
//
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式