码迷,mamicode.com
首页 > 其他好文 > 详细

编写一个圆类

时间:2020-11-07 17:45:27      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:ble   turn   get   his   pack   com   system   ret   this   

package com.cn.demo;

public class Circle {
private double radius;
public Circle() {

}
public Circle(double r) {
this.radius=r;
}
public double getArea() {

return 3.14*radius*radius;
}
public double getPerimeter() {
return 2*3.14*radius;
}
public void show() {
System.out.println("圆的半径是:"+radius);
System.out.println("圆的面积是:"+getArea());
System.out.println("圆的周长是:"+getPerimeter());
}
}

编写一个圆类

标签:ble   turn   get   his   pack   com   system   ret   this   

原文地址:https://www.cnblogs.com/hrhnb/p/13940851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!