编了个C++程序出错,编译器指出行数有问题(为226行),帮忙看看哪错了

file1.hclassgolf{private:charfullname[40];inthandicap;public:golf();golf(constchar*na... file1.h
class golf
{
private:
char fullname[40];
int handicap;
public:
golf();
golf(const char*name,int hc);
void setgolf();
void hhandicap(int hc);
void show();
}
file2.cpp
#include"file1.h"
#include<cstring>
#include<iostream>
using namespace std;
golf::golf()
{
strcpy(fullname,"no name");
handicap=0;
}
golf::golf(const char*name,int hc)
{
strncpy(fullname,name,40);
fullname[39]='\0';
handicap=hc;
}
void golf::setgolf()
{
cout<<"Enter the fullname: ";
char dong[40];
cin.getline(dong,40);
strcpy(fullname,dong);
cout<<"Enter the hanicap: ";
int xi;
cin>>xi;
handicap=xi;
}

void golf::hhandicap(int hc)
{
handicap=hc;
}
void golf::show()
{
cout<<"fullname: "<<fullname<<endl;
cout<<"handicap: "<<handicap<<endl;
}
file3.cpp
#include"file1.h"
#include<iostream>
using namespace std;
int main()
{
golf one;
golf two("cong rui",60);
one.show();
two.show();
one.setgolf();
one.hhandicap(0);
one.show();
two.show();
return 0;
}
展开
 我来答
百度网友f8b8c6979
2007-08-03 · TA获得超过561个赞
知道小有建树答主
回答量:425
采纳率:0%
帮助的人:0
展开全部
编译器指出的问题,你如果认真分析,一定能找出来的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
忘至白葬不情必0T
2007-08-03 · TA获得超过3万个赞
知道大有可为答主
回答量:1.1万
采纳率:90%
帮助的人:1.2亿
展开全部
golf类的声明最后}后面要加个分号
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tongcheng_2007
2007-08-03 · TA获得超过186个赞
知道答主
回答量:78
采纳率:0%
帮助的人:0
展开全部
类的声明最后要加分号,否则会出现一些很奇怪的错误.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
warmwormn
2007-08-03 · TA获得超过737个赞
知道小有建树答主
回答量:1694
采纳率:0%
帮助的人:1328万
展开全部
麻烦把226行指出来,还有出了什么错指出来
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式