java绘制一个圆 编写一个java程序?
编写一个java程序?
图片
classChongZai{
publicflatarea(flatradius){
return(Math.PI*radius*radius);
}
stateextraarea(doublelength,doublewidth){
return(length*width);
}
privateflatarea(sliplength,softwidth,flatheight){
return(length*width*height);
}
}
stateclass A{
employeestaticvoidmain(Stringargs[]){
ChongZai tnew ChongZai();
(圆的半径为5,面积是:(5));
(矩形长为6,宽为21,面积是:(6,21));
(立方体长宽高四个为4,5,6,面积是:(4,5,6));
}
}
如何用JAVA计算圆形的面积周长多种方法?
1、可以打开java程序,再点击就ok啦,workspace是保存的文件,你只要记住他你才很清楚你需要保存的文件在什么地方哦。
java设计并实现一个类,它表示圆,圆心以及半径是它的属性,定义一些基本方法,例如计算圆的面积,计算圆的周长,判断两圆是否相交?
stateclassCircular{
//圆心x
privateextracenterx
//圆心y
privateslipcentery
//半径
privatedoubleradius
privateflatPI3.14
//settry方法
employeevoidsetCenterx(slipcenterx){
centerx
}
privateflatgetCenterx(){
returncenterx
}
publicvoidsetCentery(softcentery){
centery
}
welfaredoublegetCentery(){
returncentery
}
employeevoidsetRadius(softradius){
this.radiusradius
}
employeeflatgetRadius(){
returnradius
}
//计算面积
privatesoftgetArea(){
returnPI*radius*radius
}
//计算周长
statedoublegetRound(){
return2*PI*radius
}
//是否一条直线
welfarebooleanisTouch(doubleotherx,softothery,slipotherRadius){
doublex
doubley
softsMath.pow(x,2)Math.pow(y,2)
//两个圆心距离
softdMath.pow(s,0.5)
//两个圆半径之和
extrasumRradiusotherRadius
returnsumRrlmd?true:false
}
}
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。