c语言程序不能运行啊,没有错误,只有几个警告

#include<stdio.h>#include<stdlib.h>#include<ctype.h>#include<math.h>intmenu_select();... #include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
int menu_select();
int FindNum();
int FindRoot();
int Detective();
int Bear();
int Diamond();
int GoodBye();
void main()
{
for (;;)
{
switch(menu_select())
{
case'1': FindNum();system("pause");break;
case'2': FindRoot();system("pause");break;
case'3': Detective();system("pause");break;
case'4': Bear();system("pause");break;
case'5': Diamond();system("pause");break;
case'6': printf("GoodBye\n");
system("pause");
exit(6);
}
}
}
int menu_select()/*菜单选择操作*/
{
char c;
do
{system("cls");
printf("1.FindNum\n");
printf("2.FindRoot\n");
printf("3.Detective\n");
printf("4.Bear\n");
printf("5.Diamond\n");
printf("6.GoodBye\n");
printf("Input1-6:");
c=getchar();
}
while(c<'1'||c>'6');
return (c-'0');
}
这是一个菜单的头,请问有什么问题吗?
{
case'1': FindNum();system("pause");break;
case'2': FindRoot();system("pause");break;
case'3': Detective();system("pause");break;
case'4': Bear();system("pause");break;
case'5': Diamond();system("pause");break;
case'6': printf("GoodBye\n");
system("pause");
exit(6); 这就是出现警告的地方了
展开
 我来答
LennieLiu聊开发
2014-08-27 · TA获得超过345个赞
知道小有建树答主
回答量:231
采纳率:92%
帮助的人:121万
展开全部
是提示你这些函数没有实现,只写了声明,但并未实现,而且你调用了这些函数。你可以注释掉调用这些函数的地方,然后运行一次。就不会有警告了。
匿名用户
2014-08-27
展开全部
不能运行是什么意思?没法编译运行还是运行出问题?没错误一般就可以编译运行。
能编译运行吗?能的话按F10单步调试,看出错的地方是什么。
把编译运行的结果包括警告贴上来吧,看程序太费时间
追问

不管按数字几这个界面都不会变

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
众里寻他0822
推荐于2016-10-03 · TA获得超过136个赞
知道小有建树答主
回答量:263
采纳率:100%
帮助的人:253万
展开全部
case'1': FindNum();system("pause");break;
case'2': FindRoot();system("pause");break;
case'3': Detective();system("pause");break;
case'4': Bear();system("pause");break;
case'5': Diamond();system("pause");break;
case'6': printf("GoodBye\n");

case 1:..
case 2:..
case 3:..
case 4:..
case 5:..
case 6:..
因为你的 int menu_select()/*菜单选择操作*/


while(c<'1'||c>'6');
return (c-'0');
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式