java类的定义及使用

根据测试类代码及运行结果,完成圆柱体Cylinder的设计,该类拥有:(1)双精度的半径radius和高height;(2)两个构造方法:无参和有参;(3)二个成员方法:... 根据测试类代码及运行结果,完成圆柱体Cylinder的设计,该类拥有:(1)双精度的半径radius和高height;(2)两个构造方法:无参和有参;(3)二个成员方法:①double cubage(),求体积;②String toString(),返回圆柱体的半径、高和体积的字符串;测试类代码如下: 展开
 我来答
wangyiyanan
推荐于2017-10-09 · TA获得超过193个赞
知道小有建树答主
回答量:81
采纳率:0%
帮助的人:55.8万
展开全部

代码我是差不多实现了,希望你能照着敲一遍,想一想它的实现方法,这样子对新手的学习会有提高。

class Cylinder
{
private double radius;
private double height;
public Cylinder(){}
public Cylinder(double radius,double height)
{
this.radius=radius;
this.height=height;
}
public double cubage()
{

return height*radius*radius*Math.PI;
}
@Override
public String toString() {
return "圆柱体的半径为:" + radius + ", 高为:" + height
+ ", 体积为:" + cubage() ;
}
}
public class test {
/**
 * @param args
 */

public static void main(String[] args) {
// TODO 自动生成的方法存根
Cylinder cylinder=new Cylinder(5.0, 10.0);
System.out.println(cylinder);
}
}
百度网友471e72d
2015-06-17 · TA获得超过257个赞
知道小有建树答主
回答量:116
采纳率:0%
帮助的人:123万
展开全部
public class Cylinder {
 double radius;
 double height;
 
 public Cylinder() {
  this.radius = 0;
  this.height = 0;
 }
 
 public Cylinder(double radius, double height) {
  this.radius = radius;
  this.height = height;
 }
 
 public double cubage() {
  return 3.1415926 * radius * radius * height;
 }
 @Override
 public String toString() {
  return "圆柱体的半径为:" + radius + "," + "高为:" +  
    height + "," + "体积为:" + cubage();
 }
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
duqian42707
2015-06-17 · TA获得超过463个赞
知道小有建树答主
回答量:251
采纳率:0%
帮助的人:95万
展开全部
public class test{
public static void main(String[] args) {
Cylinder cylinder=new Cylinder(5,10);
System.out.println(cylinder);
}
}
class  Cylinder{
double radius;
double height;
public Cylinder() {
}
public Cylinder(double radius,double height) {
this.radius=radius;
this.height=height;
}
double cubage(){
return Math.PI*radius*radius*height;
}
@Override
public String toString() {
return "圆柱体的半径为:"+radius+",高为:"+height+",体积为:"+cubage();
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式