搜索资源列表
Tra
- 基本的java3d程序 画图 三角形 还可以旋转 对于图形编程有一定的意义-java3d basic procedures can also drawing triangle rotation for graphical programming with a certain sense
hellooooo
- 利用多态性编程,创建一个square类,实现求三角形、正方形和圆形面积。方法 //抽象出一个共享的类,定义一个函数求面积的公共界面。再重新定义各面积的求面积 //函数,在主类中创建不同类的对象,并求不同形状的面积 -use polymorphism programming, the creation of a square type, seeking to achieve triangle, square and circular area. Methods / / abstract o
hm6
- 抽象类的使用 设计一个类层次,定义一个抽象类--形状,其中包括有求形状的面积的抽象方法。 ----继承该抽象类定义三角型、矩形、圆。 ----编写一个主程序将一个三角形、矩形、圆存入一个数组中,将数组中各类图形的面积输出。-kind of abstract designs a class hierarchy, the definition of an abstract category -- shape, These include the shape of the area fo
Sanjiao_2006
- 各种三角形,对于刚学得很有用,主要是循环,其中还有一个菱形-various triangle, just learning very useful, mainly cycle, in which there is a rhombus
fivestars
- 这是一个简单的程序,用画一个五星,用三个三角形画,它设成红颜色。-This is a simple procedure, with a painting of a five-star, with three triangular paintings, it set to the color red.
sanjiaoxing
- 求三角形面积的算法,可以将输入的三个符合三角形定理的字符转化为整数来求面积-Triangle area of the algorithm, can be imported with three triangle theorem of the characters into the area to seek Integer
s14dgt233
- 编写一个三角形类,能根据3个实数构造三角形对象,如果三个实数不满足三角形的条件,则自动构造以最小值为边的等边三角形。输入任意三个数,求构造的三角形面积-prepared a triangle category, according to three real tectonic triangular object, If the real number is not met three conditions triangle will automatically constructed to th
Lab16_2
- 计算三角形以及圆形的面积的小程序-calculated triangle and the area round the small program
yanghui
- 杨辉三角形的输入,关键是数组的应用等知识
drawing
- 编写求解几何图形(如直线、三角形,矩型,圆,多边型)的周长、面积的应用程序,要求尽可能多的用到面向对象技术的特点,如继承,多态,封装,抽象类,接口,内部类,包等技术。写出算法。-prepared to solve geometric shapes (such as linear, triangular, rectangular, round, the multilateral type) of the perimeter, the area of application procedures,
JUNITExample
- 对使用junit的三角形的测试代码,软件测试时的简单使用
Adapter
- 用java写的面向对象应用的一个实例 运用了适配器模式 链表中的每一个元素都能调用同一个draw方法画图 画不同的圆形 方形 三角形
Pascal
- 三角形基本上就是在解nCr ,因为三角形上的每一个数字各对应一个nCr ,其中n为row,而r为colnmu
java作业3(画图)
- 这是一用JAVA画三角形,棱型,矩形的程序-This is a painted triangle with Java, Prism type, rectangular procedures
Triangle
- 我自己写的java程序,实现输入三个点的坐标,输出能否构成三角形并输出面积和周长-I wrote it myself java process, input the coordinates of three points, the output can constitute a triangle and the output area and perimeter
JAVA
- 三角形 判断 两边之和大于第三边-Triangle of both sides is greater than the third side
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.
Triangle
- 编写一个jsp页面,该页面提供一个表单,用户可以通过表单将三角形三边的长度提交给页面,用户提交表单后,jsp页面将计算三角形面积的任务交给一个bean去完成.-Write a jsp page, the page provides a form, users can form will be submitted to the length of the triangle triangular page, after the user submits the form, jsp page will
Desktop
- 通过用户自己输入三角形三条边的边长数,计算三角形面积,使用的是jsp源代码编程来实现此功能-User input through the three sides of the triangle side lengths, calculating the triangle area, using a jsp source code programming to implement this functionality
点线圆长方形三角形的周长和面积
- 设计一个能够描述点(point)、线(line)、圆(circle)、矩形(rectangle) 和三角形(triangle)等几何形状的类体系,能够计算不同形状的 周长和面积(如果能够定义的话)。程序文件命名为 Exe3_3.java。