代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/465340/7053300
java rectangle.java
public class Rectangle
{
public int x;
public int y;
public int width;
public int height;
public Rectangle()
{
this(0, 0, 0, 0);
}
public Rectan
www.eeworm.com/read/465340/7053334
class rectangle.class
www.eeworm.com/read/464569/7065042
java rectangle.java
/**
* class to model a Rectangle
*/
public class Rectangle extends Square
{
private int breadth ;
public Rectangle()
{
length = 0 ;
breadth = 0 ;
} // end of constructor method
www.eeworm.com/read/309871/7131688
gif rectangle.gif
www.eeworm.com/read/104147/7141221
java rectangle.java
public class Rectangle {
public int width = 0;
public int height = 0;
public Point origin;
// four constructors
public Rectangle() {
origin = new Point(0, 0);
}
www.eeworm.com/read/463068/7189657
bmp rectangle.bmp
www.eeworm.com/read/462923/7191602
java rectangle.java
package lab3.problem2;
public class Rectangle extends Shape {
double a,b;
public Rectangle(double width, double height) {
a= width;
b= height;
}
public double getArea() {
doub
www.eeworm.com/read/459969/7260035
class rectangle.class
www.eeworm.com/read/456550/7345363
h rectangle.h
#include
class Rectangle //矩形类
{
float left,right,top,bottom; //四个数据成员,left,right,top,bottom
public:
Rectangle(float l=0,float r=0,float t=0,float b=0) //构造函数
{
left=l;
r
www.eeworm.com/read/456497/7347962
cpp rectangle.cpp
// Rectangle.cpp: implementation of the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Rectangle.h"
/////////////////