C++程序为什么只有一个错误 但是提示好多错误。在线等的,高手速度解,谢谢了

2025-01-07 06:33:09
推荐回答(3个)
回答1:

你这很明显照着书敲的,都会写点线类了,怎么可能出现这种错误。建议你把书本的东西理解一遍,尽量不要跟着书的东西敲代码。 从基本地开始,慢慢地,那些错误就会少了。

回答2:

#include
#include
using namespace std;
class point()//()去掉 //点类
{
public:
point(int xx=0,int yy=0)
{
x=xx;
y=yy;
}
~point(){}
point(point &p);
int getx()
{
return x;
}
int gety()
{
return y;
}
private:
int x,y;
}//;
class line()//()去掉//线类
{
public:
line(point a,point b)
{
p1=a;
p2=b;
}
~line(){}
int length()
{
int m=p1.getx()-p2.getx();
int n=p1.gety()-p2.gety();
s=sprt(m*m+n*n);//sqrt
return s;
}
private:
int s;
point p1,p2;
}//;
point::point(point &p)
{
x=p.x;
y=p.y;
}
void main()//int main()
{
point A(3,3),B(5,5);
line E(A,B);
cout<return 0;
}

回答3:

比较明显的错误是类的声明的末尾没有分号,能把错误信息发出来看看吗?