代码搜索:rectangle
找到约 10,000 项符合「rectangle」的源代码
代码结果 10,000
www.eeworm.com/read/138119/13259180
c rectangle.c
/*
TurboC, a library for porting Borland Turbo C to GNU gcc.
Copyright 2002 Ronald S. Burkey
This library is free software; you can redistribute it and/or
modify it under the terms of the GN
www.eeworm.com/read/137548/13312582
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/320515/13425062
java rectangle.java
package package1;
public class Rectangle {
public void DrawRectangle(){
System.out.println("DrawRectangle");
}
}
www.eeworm.com/read/318327/13481408
java rectangle.java
// 例2.1.1 Rectangle.java
class Rectangle // 长方形类
{
double length; // 长
double width; // 宽
public double getPerimeter() // 求周长
{
return (length+width) * 2;
www.eeworm.com/read/314892/13556880
class rectangle.class
www.eeworm.com/read/314860/13557341
class rectangle.class
www.eeworm.com/read/314860/13557379
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/314860/13557380
class rectangle.class
www.eeworm.com/read/314823/13558280
h rectangle.h
/****************************************************************
File Name: rectangle.h
Author: Tian Zhang, CS Dept., Univ. of Wisconsin-Madison, 1995
Copyright(c) 1995 by Tian Zhan
www.eeworm.com/read/314823/13558316
c rectangle.c
/****************************************************************
File Name: rectangle.C
Author: Tian Zhang, CS Dept., Univ. of Wisconsin-Madison, 1995
Copyright(c) 1995 by Tian Zha