首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴yhnju485的代码贴Java
public class Rectangle{
    private int length;
    private int width;
    
    public Rectangle(int length,int width){
      this.length=length;
      this.width=width;
    }
    
    public void set(int length,int width){
      this.length=length;
      this.width=width;
......................
阅读全部 | 2025年11月4日 15:57
public class Circle{
    private double radius;
   
    public Circle(){
        radius = 0.0;
    }
    
    public Circle(double rad){
        radius = rad;
    }
    
    public double getRadius(){
......................
阅读全部 | 2025年11月4日 15:49
1
yhnju485