代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/265205/11272972
cpp rectangle.cpp
#include "rectangle.h"
#include "dynclass.h"
DYN_DECLARE(CRectangle);
double CRectangle::area(void) const
{
std::cout
www.eeworm.com/read/263409/11363840
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/263409/11363843
exe rectangle.exe
www.eeworm.com/read/407919/11408319
bmp rectangle.bmp
www.eeworm.com/read/403014/11523503
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/348208/11605617
class rectangle.class
www.eeworm.com/read/348208/11605709
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/348208/11605710
class rectangle.class
www.eeworm.com/read/157603/11683410
h rectangle.h
// Rectangle.h: interface for the CRectangle class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_RECTANGLE_H__29C59BE2_B347_11CF_BF57_B29AF85F4C3B__I
www.eeworm.com/read/157603/11683634
cpp rectangle.cpp
// Rectangle.cpp: implementation of the CRectangle class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Cad.h"
#include "Entity.h"
#