代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/170872/9783208
h rectangle.h
//-< RECTANGLE.H >---------------------------------------------------*--------*
// FastDB Version 1.0 (c) 1999 GARRET * ? *
// (Post Relational Database Management
www.eeworm.com/read/366899/9793737
cpp rectangle.cpp
//: C09:Rectangle.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Accessors & mutators
class
www.eeworm.com/read/268481/11137039
h rectangle.h
//Begin of Rectangle.h
class Point //基类声明
{
public:
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X;}
float GetY(
www.eeworm.com/read/268481/11137042
h rectangle.h
//Begin of Rectangle.h
class Point //基类Point类的定义
{
public: //公有函数成员
void InitP(float xx=0, float yy=0) {X=xx;Y=yy;}
void Move(float xOff, float yOff) {X+=xOff;Y+=yOff;}
float GetX() {return X
www.eeworm.com/read/266594/11218164
png rectangle.png
www.eeworm.com/read/265414/11264505
class rectangle.class
www.eeworm.com/read/248151/12592375
class rectangle.class
www.eeworm.com/read/248151/12592440
java rectangle.java
//rectangle.java
package shape;
public class rectangle extends locate implements shapes{
public int width,height;
public double area(){
return width*height;
}
public double circulms(){
www.eeworm.com/read/248151/12592441