编写一个C++程序 它使用3个用户自定义的函数
编写一个C++程序,它使用3个用户定义的函数包括main()并生成下面的输出:ThreeblindmiceThreeblindmiceSeehowtheyrunSeeho...
编写一个C++程序,它使用3个用户定义的函数包括 main() 并生成下面的输出:
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次
该函数生成前两行
另一个函数也被调用两次
并生成其余的输出
#include<iostream>
using namespace std;
void three();
void see();
int main()
{
three();
three();
see();
see();
return 0;
}
void three()
{
cout << "Three blind mice" << endl;
}
void see()
{
cout << "See how they run" << endl;
}
这是我编的程序 运行之后显示
1>MSVCRTD.lib(crtexew.obj) : error LNK2019: 无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用
1>C:\Users\lenovo\Desktop\文档\12121444\3\Debug\3.exe : fatal error LNK1120: 1 个无法解析的外部命令
不知道哪里错了 为什么不能运行啊? 求指教 展开
Three blind mice
Three blind mice
See how they run
See how they run
其中一个函数要调用两次
该函数生成前两行
另一个函数也被调用两次
并生成其余的输出
#include<iostream>
using namespace std;
void three();
void see();
int main()
{
three();
three();
see();
see();
return 0;
}
void three()
{
cout << "Three blind mice" << endl;
}
void see()
{
cout << "See how they run" << endl;
}
这是我编的程序 运行之后显示
1>MSVCRTD.lib(crtexew.obj) : error LNK2019: 无法解析的外部符号 _WinMain@16,该符号在函数 ___tmainCRTStartup 中被引用
1>C:\Users\lenovo\Desktop\文档\12121444\3\Debug\3.exe : fatal error LNK1120: 1 个无法解析的外部命令
不知道哪里错了 为什么不能运行啊? 求指教 展开
3个回答
展开全部
如果是vs的看看link的选项是否/SUBSYSTEM:是windows 还是console,微软会根据这个找main,控制台找main,windows找winmain
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
main 函数写在最下面 ,可以试试
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询