首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴yhnju485的代码贴Python
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:06
1
yhnju485