设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1861|回复: 1
打印 上一主题 下一主题

error LNK2001是什么原因?

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-4 01:02:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include "iostream"
using std::cin;
using std::cout;
using std::endl;
#include "iomanip"
using std::setw;
#include "cstdlib"
int mian()
{
unsigned seed;
cout<<"Enter seed:";
cin>>seed;
srand(seed);
for(int counter=0;counter<10;counter++)
{
cout<<setw(10)<<(1+rand()%6);
if(counter%5==0)
cout<<endl;
}
return 0;
}





--------------------Configuration: 3_9 - Win32 Debug--------------------
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/3_9.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.
3_9.exe - 2 error(s), 0 warning(s)
2#
发表于 2009-11-4 01:02:18 | 只看该作者
#include <iostream>
//using std::cin;
//using std::cout;
//using std::endl;
#include <iomanip>
//using std::setw;
#include <cstdlib>
using namespace std;
int main()//这里是主要的不是你写的mian()
{
unsigned seed;
cout<<"Enter seed:";
cin>>seed;
srand(seed);
for(int counter=0;counter<10;counter++)
{
cout<<setw(10)<<(1+rand()%6);
if(counter%5==0)
cout<<endl;
}
cout<<endl;
system("pause");
return 0;
}

上面修改了一下你试一试如何(在C++Builder6.0运行通过)
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 23:24 , Processed in 0.114002 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表