java定义一个点类(point),包含x,y坐标数据成员,显示函数(show)和计算面积(getarea)的函数成员

java定义一个点类(point),包含x,y坐标数据成员,显示函数(show)和计算面积(getarea)的函数成员。以点为父类构建一个圆类重载计算面积的函数;定义一个... java定义一个点类(point),包含x,y坐标数据成员,显示函数(show)和计算面积(getarea)的函数成员。以点为父类构建一个圆类重载计算面积的函数;定义一个直线类,以两个点类对象作数据成员,定义显示,求面积及长度函数
明天要用啊 谢谢各位iT了
展开
 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
帐号已注销
2015-01-21 · TA获得超过1562个赞
知道小有建树答主
回答量:674
采纳率:0%
帮助的人:824万
展开全部
import java.lang.Math.*;

class point {

int x;
int y;

void show()
{
//don't know the purpose for this one.
}
double getarea()
{
return Math.sqrt(y*y + x*x);
}

}

class circirl extends point
{

int r;

double getarea(int r)
{
return (3.14*r*r);
}
}

public class line {
point point1;
point point2;

int getarea(point point1, point point2)
{
int length = point1.x - point2.x;
int width = point1.y - point2.y;
return Math.abs(width)*Math.abs(length);
}

double length(point point1, point point2)
{
int length = point1.x - point2.x;
int width = point1.y - point2.y;

double leng_point = Math.sqrt(length*length + width*width);
return leng_point;
}

public static void main(String[] args) {
line line =new line();
// circirl circirl = new circirl();
line.point1 = new point();
line.point1.x= 40;
line.point1.y= 40;
line.point2 = new point();
line.point2.x= 70;
line.point2.y= 90;

int len = line.getarea(line.point1,line.point2);
System.out.println("the len for the two point is "+len);

double sqre = line.length(line.point1,line.point2);
System.out.println("the squre for the two point is "+sqre);

}

}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式