搜索资源列表
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
quandengsanjiaoxing
- 边角边全等三角形演示课件,帮实习学校老师做的,懂action的交流,懂隐形按钮的下,都不懂的别下了,免得说是垃圾!-Corner Pin congruent triangles demonstration courseware, training schools to help teachers do, and understand the action exchanges, understand the stealth button, nothing under the other, so t
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
cyuyanbianxianwet
- 变量和相等问题的设计和实现将a、b、c、d、e、f这6个变量排成如图所示的 三角形,这6个变量分别取 1——6的整数,且均不相同。求使三角形三条边上的变量之和相等的全部解,如 3 6 2 1 4 5 为一个解。 程序引入变量a,b,c,d,e,f,并让它们分别取1——6的整数,在它们互不相等的 条件下, 测试由它们排成如图所示的三角形三条边上的变量之和是否相等,如相等即为一种满足要求的排列,把它们输出。当这些变量取尽所有的组合后,程序就可得到全部可能的解。 -vari
Lab16_2
- 计算三角形以及圆形的面积的小程序-calculated triangle and the area round the small program
TIN
- 用三角网法绘制等值线,是在三角形的三条边上用线性内插方法寻找等值点,这种方法的机理是将每个三角形看作是空间的一个平面,这就要求在每个三角形的三个顶点内的地貌形态无明显的变化,故此希望将其中最靠近的三个点构成三角形,以符合上述机理,使插补的等值点精度较高,更好的反映地貌的实际形态。符合这些条件的三角形称之为“最佳三角形”
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的三角形的测试代码,软件测试时的简单使用
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。