标题:[求助]这个程序那里错了
只看楼主
与子偕老
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-12-15
 问题点数:0 回复次数:1 
[求助]这个程序那里错了

#include<iostream>
using namespace std;
class P
{
public:
char name[10];
void g_n(){cout<<"name:"<<endl;cin>>name;}
void o_n(){cout<<name<<endl;}
virtual void g_d()=0;
virtual bool o_s()=0;
};
class S:public P
{
private:
float mark;
public:
void g_d(){P::g_n();cout<<"mark"<<endl;cin>>mark;}
bool o_s(){return mark>4? true: false;}
};
class T:public P
{
private:
int n;
public:
void g_d(){P::g_n();cout<<"n"<<endl;cin>>n;}
bool o_s(){return (n>100?true:false);}
};
void mian()
{
P *w[10];

int n=0;
char choice;
cout<<"choice"<<endl;
cin>>choice;


while(choice!='y')
{
cout<<"S or T"<<endl;
cin>>choice;
if(choice=='s')
w[n]=new S;
else
w[n]=new T;
cout<<"enter another"<<endl;
cin>>choice;
}
for(int i=0;i<n;i++)
{
w[i]->o_n();
if(w[i]->o_s())
cout<<"this is outstanding"<<endl;
}
}
用Microsoft Visual C++ 6.0编译以后,不能运行出现以下错误
--------------------Configuration: gg - Win32 Debug--------------------
Linking...
LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main
Debug/gg.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.

gg.exe - 1 error(s), 0 warning(s)
那位朋友能指点一下不胜感激!!!!!!!!!!!!!!

搜索更多相关主题的帖子: void public name mark 
2006-12-17 20:22
song4
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:38
帖 子:1533
专家分:4
注 册:2006-3-25
得分:0 
这个高级错误
我也总有
main

嵌入式 ARM 单片机 驱动 RT操作系统 J2ME LINUX  Symbian C C++ 数据结构 JAVA Oracle 设计模式 软件工程 JSP
2006-12-17 22:15



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-110158-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.086020 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved