搜索资源列表
Print_Mesure_GeometricShape
- 此程序可实现:在可视化界面中随即生成一些图形(长方形、椭圆、圆、正方形);程序会自动告诉你所生成的图形的形状并计算这些图形的面积;最后程序会自动统计各个图形的分布。-this procedure can be achieved : the visual interface immediately generated some graphics (rectangular, oval, round, square); the program will automatically tell you g
Lab16_2
- 计算三角形以及圆形的面积的小程序-calculated triangle and the area round the small program
CircleArea
- 计算圆面积的程序源代码
lader-area
- 问题描述:编写一个应用程序计算梯形的面积。 基本要求:通过在程序中定义2个类来分别描述梯形的属性和求面积的方法,掌握类的定义方法;通过在程序中定义主类,创建梯形类的对象计算它们的面积,掌握对象的定义和使用方法. 文档中包含实验要求和详细的源代码..
Area12
- 一个Applet小程序,实现计算圆面积的功能
bao
- (1) 实现一个Point类,该类包含表示坐标的两个int型变量x、y,构造方法Point()和Point(int xx, int yy),返回x值和y值的int getX()和int getY()方法,计算两点间距离的double distance(Point)方法。其中计算平方根用Math.sqrt()方法。 (2) 实现一个Circle类,该类包含表示圆心的Point型变量center,表示半径的int radius变量,以及构造方法Circle()、Circle(int xx,int
forecastfirefield
- 纯java实现的火场面积的计算,并对一定的模拟计算
编写求解几何图形周长、面积的应用程序
- 编写求解几何图形周长、面积的应用程序,要求如下: 1) 几何图形要求至少包含直线、三角形,矩型,圆等类型,计算周长,面积等。 2) 要求能计算两个图形之间的距离 3) 要求能计算两个图形进行布尔运算(即交、并、差)后的面积(可选作)。 4) 必须用到继承、接口、多态和包 -It s good.
Ex10_2
- 用java计算出一个圆和矩形的周长和面积,值已固定,可在源码中修改-Use java to calculate the circumference of a circle and rectangle and area values have been fixed, you can modify the source code
分别定义图形类Shape(抽象基类)
- 分别定义图形类Shape(抽象基类),继承类矩形类Rectangle、正方形类Square、 圆形类Circle;并且计算周长和面积。在另一个main函数中分别创建矩形、 正方形和圆形对象,设置所需的属性值,打印其周长和面积。(备注:只要把该文件解压,把里面的东东COPY去即可使用)-Graphics categories are defined Shape (abstract base class), the succession of quasi-rectangular type R
Triangle
- 通过三点坐标判断能否构成三角形。是的话计算面积-By three coordinates to determine whether to form a triangle. Is calculated area
juxingmianjjisuan
- 矩形的面积计算(包括正方形) 矩形的面积计算(包括正方形)矩形的面积计算( 包括正方形) 矩形的面积计算( 包括正方形)-Rectangular area (including square) area of rectangular (including square) area of rectangular (including square) area of rectangular (including square)
tongxin
- 用java写的,一个服务器与客户端的通信程序,用户输入半径,服务器将其面积计算出来-Using java to write, and a server and client communication program, the user input radius, the server will calculate its size
Count
- 计算三角形的面积和周长,要求设计出点数,通过输入三点坐标的方法来确定一个三角形,并输出三角形的面积,周长等。-Calculate triangle area and perimeter, to design the points, by entering the three methods to determine the coordinates of a triangle, and the output of the triangle area and perimeter.
jdbc
- 用java写的,一个服务器与客户端的通信程序,用户输入半径,服务器将其面积计算出来-Using java to write, and a server and client communication program, the user input radius, the server will calculate its size用java写的,一个服务器与客户端的通信程序,用户输入半径,服务器将其面积计算出来-Using java to write, and a server and cli
08712097
- 图形画法、图形面积计算、画圆、画长方形、正方形-draw
MVC_Triangle_S
- JAVA编的一个界面进行三角形面积计算,能正常运行。-A JAVA interface for triangular area computation, can run normally.
简单java编程
- 系统登录 做登录界面可以用 位置已经计算好了 计算面积和周长可以用TestShape(Make a landing interface)
Java-mid-term-test
- (1)某邮局对邮寄包裹有如下规定:若包裹的长宽高任一尺寸超过1米或重量超过30千克,不予邮寄;对可以邮寄的包裹每件收取手续费0.5元,再加上根据下表按重量weight计算的邮资,请编写程序计算某包裹的邮寄资费。 重量(千克) 收费标准(元) weight<=10 1.00 10<weigh<=20 0.90 20<weigh<=30 0.80 (2)设计一个Rectangle(矩形)类,数据成员包括length(长)、width(宽)。要求成员方法实现
点线圆长方形三角形的周长和面积
- 设计一个能够描述点(point)、线(line)、圆(circle)、矩形(rectangle) 和三角形(triangle)等几何形状的类体系,能够计算不同形状的 周长和面积(如果能够定义的话)。程序文件命名为 Exe3_3.java。