代码搜索:rectangle

找到约 10,000 项符合「rectangle」的源代码

代码结果 10,000
www.eeworm.com/read/296786/8077308

class rectangle.class

www.eeworm.com/read/296786/8077310

java rectangle.java

public class Rectangle { int width; int height; boolean isSquare; public Rectangle( int width, int height ){ this.width=width; this.height=height; } public Re
www.eeworm.com/read/296550/8096428

class rectangle.class

www.eeworm.com/read/196362/8097492

class rectangle.class

www.eeworm.com/read/196362/8097598

class rectangle.class

www.eeworm.com/read/196362/8097604

java rectangle.java

class Rectangle { int l,w; int perimeter() { return 2 * (l + w); } int area() { return l * w; } public static void main(String [] args) { Rectangle rect1 = new Re
www.eeworm.com/read/296237/8115574

class rectangle.class

www.eeworm.com/read/296237/8115576

java rectangle.java

import java.lang.Math; public class Rectangle { double x1; double x2; double y1; double y2; public Rectangle(){ x1=0; x2=0; y1=1; y2=1; } public Rectangle(doub
www.eeworm.com/read/296179/8118707

java rectangle.java

//创建Rectangle类 class Rectangle { private int x; private int y; private int width; private int length; public Rectangle() { x=40; y=30; width=100; length=150; }
www.eeworm.com/read/332970/12714308

class rectangle.class