C++题目请帮忙看看哪里错了,谢谢啊!!
编写一个程序计算两个给定长方形的周长,其中再设计类成员函数tlength()(将两个长方形的周长合并为一个临时长方形)以对象作为返回值。#include<iostream...
编写一个程序计算两个给定长方形的周长,其中再设计类成员函数tlength()(将两个长方形的周长合并为一个临时长方形)以对象作为返回值。
#include<iostream.h>
class rectangle
{
private:
length,width;
public:
rectangle(){};
rectangle(int a,int b);
rectangle tlength(rectangle A,rectangle B);
void display(rectangle C);
};
rectangle::rectangle(int a,int b)
{
length=a;width=b;
}
rectangle rectangle::tlength(rectangle A,rectangle B)
{
tlength.length=A.length+B.rectangle.length;
tlength.width=A.width+B.width;
}
void rectangle::display(rectangle C)
{
return((C.length+C.width)*2);
}
void main()
{
rectangle A(1,2),B(3,4),C;
C=C.tlength(A,B);
C.display(C);
} 展开
#include<iostream.h>
class rectangle
{
private:
length,width;
public:
rectangle(){};
rectangle(int a,int b);
rectangle tlength(rectangle A,rectangle B);
void display(rectangle C);
};
rectangle::rectangle(int a,int b)
{
length=a;width=b;
}
rectangle rectangle::tlength(rectangle A,rectangle B)
{
tlength.length=A.length+B.rectangle.length;
tlength.width=A.width+B.width;
}
void rectangle::display(rectangle C)
{
return((C.length+C.width)*2);
}
void main()
{
rectangle A(1,2),B(3,4),C;
C=C.tlength(A,B);
C.display(C);
} 展开
展开全部
你自己对照一下,改好了。看我改的这么辛苦,采纳我吧。。。
#include "stdafx.h"
#include <stdio.h>
#include <iostream>
using namespace std;
class rectangle
{
private:
int length,width;
public:
rectangle(){};
rectangle(int a,int b);
rectangle tlength(rectangle A,rectangle B);
void display(rectangle C);
};
rectangle::rectangle(int a,int b)
{
length=a;width=b;
}
rectangle rectangle::tlength(rectangle A,rectangle B)
{
A.length= A.length + B.length;
A.width=A.width+B.width;
return A;
}
void rectangle::display(rectangle C)
{
cout<<(C.length+C.width)*2;
}
void main()
{
rectangle A(1,2),B(3,4),C;
C=C.tlength(A,B);
C.display(C);
}
2014-11-05
展开全部
程序设计非常不合理,但是错误只有一处:
第5行需要改为:
int length,width;
第5行需要改为:
int length,width;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询