代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/428438/8869042
ctl rectangle.ctl
www.eeworm.com/read/384084/8901091
cpp rectangle.cpp
// Rectangle.cpp: implementation of the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Rectangle.h"
/////////////////
www.eeworm.com/read/384084/8901140
h rectangle.h
// Rectangle.h: interface for the Rectangle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RECTANGLE_H__9E87233D_ED13_4D3B_9CF7_E33330E014DF__IN
www.eeworm.com/read/283953/8976662
class rectangle.class
www.eeworm.com/read/283953/8976782
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/283953/8976783
class rectangle.class
www.eeworm.com/read/382954/8986126
cs rectangle.cs
using System;
class Rectangle
{
private int iHeight;
private int iWidth;
// 缺省构造函数
public Rectangle()
{
Height=0;
Width=0;
}
// 构造函数重载
public Rectangle(int w
www.eeworm.com/read/382954/8986132
exe rectangle.exe
www.eeworm.com/read/185150/9055276
h rectangle.h
//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() {return
www.eeworm.com/read/185150/9055287
h rectangle.h
//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;}
floa