代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/129125/14265125
java rectangle.java
public class Rectangle
extends Shape
{
protected double width, height;
public Rectangle(double _width, double _height)
{
type = "Rectangle";
width = _width;
he
www.eeworm.com/read/129125/14265160
class rectangle.class
www.eeworm.com/read/129125/14265163
java rectangle.java
public class Rectangle extends Shape
{ protected double length, width;
public Rectangle(double _length, double _width)
{ name = "Rectangle";
length = _length;
width =
www.eeworm.com/read/129125/14265187
class rectangle.class
www.eeworm.com/read/129125/14265188
java rectangle.java
public class Rectangle
{
private double width, height;
public Rectangle(double _width, double _height)
{
width = _width;
height = _height;
}
public String toStri
www.eeworm.com/read/129125/14265208
class rectangle.class
www.eeworm.com/read/129125/14265212
java rectangle.java
public class Rectangle
extends Shape
{
protected double length, width;
public Rectangle(double _length, double _width)
{
name = "Rectangle";
length = _length;
www.eeworm.com/read/129125/14265265
class rectangle.class
www.eeworm.com/read/129125/14265270
java rectangle.java
public class Rectangle
extends Shape
{
protected double length, width;
public Rectangle(double _length, double _width)
{
name = "Rectangle";
length = _length;
www.eeworm.com/read/127981/14322749
java rectangle.java
// rectangle类的定义
class rectangle
{
int width;
int height;
int area()
{
return weight*height;
}
int perimeter()
{
return 2*(width+height);
}
}