搜索资源列表
math_shang
- 信息是个很抽象的概念,本文介绍了熵的概念,并介绍计算方法-information is a very abstract concept, this paper introduces the concept of entropy, and the calculation method introduced
jsff
- 计算方法的VB程序,一般教科书要求完成。应该对不少初学者有用-VB calculation procedures required to complete a general textbook. Should be useful for many beginners
8_puzzle
- 8数码问题的Java求解,采用A*算法。数据结构采用的Vector<int[]>。输出为"no solution"或一系列表示求解过程的字符串。 某些30步的测试样例需要半分钟左右,但是绝对是正确解~~万望您能不吝点滴时间耐心等待……orz thnx~~ 我用的启发函数计算了现在的网格距离目标网格还有多远。 具体算法是,将每一格中的数字的坐标与其应该在的坐标的差加到一起,得到这个最终值h(x) 也就是Manhattan_Distance 源码使用
ChordIntercept
- 基于Java的迭代法,是数值计算方法的实验题。-Java-based iterative method is a numerical calculation of the experimental problems.
Iteration
- 基于Java的迭代法,是数值计算方法的实验题。-Java-based iterative method is a numerical calculation of the experimental problems.
Newton
- 基于Java的牛顿法,是数值计算方法的实验题。-Java-based Newton method is a numerical calculation of the experimental problems.
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.
report4
- 这是一个链接计算的计算方法程序.希望给大家有所帮助!-This is a link to calculate the calculation procedure. We hope to help!
EmployeeTest
- 这是一个java的登记员工工资增长的程序,可以记录员工入职时间和该员工工资增长的计算方法-This is the registration of a java program staff wage increases, employees can record the entry time and the calculation of wages growth
DateHelper
- 一个日期处理类,提供处理日期间隔、计算闰年等方法-A date handling classes, to provide processing date interval calculation methods such as leap year
a
- 1) 利用求n!的方法计算 2!+4!+5!的值。分别利用递归和非递归方法实现求n!。 2) 编写根据三条边求三角形面积的方法。利用该方法求以下两个三角形面积。 (1)三条边分别为:3,4,5 (2)三条边分别为:5.3, 6.2, 8 3)从命令行参数获取两个整数,找出两个整数之间的所有素数,每行输出3个数。-1) use the method seek n! 2!+4!+5! Value. Are recursive and non recursive method seek
JavaScript-date-caculate
- Javascr ipt的日期计算方法,包括两个日期之间相隔的天数,计算一个日期之前多少天,往后推算多少天得到的Date对象,方法可以直接调用,功能较全,即使不能直接调用,有一定基础的程序员也可以根据文档提供的方法自行进行改编-Javascr ipt date calculation methods, including two the number of days between dates, calculate how many days before a date, the projecte
a
- 使用字符流编程实现以下功能 *从键盘输入姓名、学号、成绩,并保存到文本文件中,重复进 行,直到输入空字符串为止 *从文件中读取各学生的成绩,并计算所有学生成绩的平均值、最大值、最小值和总分。 这个程序还有很多可以改进,比如如何确定成绩,当有的成绩大于100时,有的为个位数时又该如何subString,事实上这种截取成绩的方法太拙劣,不合适。 -Character stream programming the following features From the ke
Find-a-leap-year
- 查找闰年,通过闰年的计算方法,使用JAVA实现一个简单计算闰年的例子-Find a leap year, leap year calculation method, using the JAVA example of a simple calculation of leap year
TestGoodRing
- 目前Ring类中包含3个数据域、2个构造方法和3个计算方法。在该类的基础上定义一个新圆环类GoodRing-Ring class contains three data fields and the two constructor methods and the three calculation methods. Ring on the basis of the class to define a new class GoodRing
Pay-of-employees
- 1. 一个计算费用的抽象类GetFee,其中有计算费用的抽象方法getFee() 一个计算费用的具体类Fee, 实现抽象方法getFee(),费用=收入*费率,不同员工的收入计算方法不同,费率不同,但费率是固定的 一个员工接口Clerk,其中有getIncome()抽象方法;一个教授实现类Professor,其中有getIncome()方法的实现,教授的收入=工资+奖金+导师费用;一个讲师实现类Lecture, 其中有getIncome()方法的实现,讲师的收入=工资+奖金;一个测试类Test。
me
- java面积计算,详细的说明一个三角行的计算方法-java area calculation, the detailed descr iption of the method of calculation of a triangular line
scale9_demo
- 我们都知道矢量图放大不失真,而位图放大会失真,这个和它们在电脑底层的计算方法有关。为了放大一个矩形或者圆角矩形,我们可以用矢量图来绘制这个矩形,这没有问题,但是假如这个矩形同时要移动或者变形,势必给CPU带来较大的压力,因为矢量图的每一次变化都要CPU重新计算,假如你的作品本身耗费CPU较高的话,那么这种方式就差强人意了,为了最优地放大位图,Flash中引入了9宫格的方法,也叫9切片,本节详细讲述一下9宫格。-We all know Vector amplification without di
MailSystem
- 设计一个邮寄包裹的收费系统,在邮寄类型确定的情况下,包裹的邮资由包裹的重量a,邮寄距离b,保价金额c三个参数决定。 如:普通邮件(RegularMail)的邮费 = 3(a+b/100)+0.01c 挂号邮件(RegisterdMail)的邮费 = 4(a+b/100)+0.02c等等 请设计一个系统,计算包裹的邮资。系统使用图形用户界面,用户在图形用户界面选择邮寄类型,再输入重量、距离和报价金额,单击确定按钮系统就计算出包裹的邮资。要求系统能够灵活的增减邮寄类型和
Mail
- 请设计一个系统,计算包裹的邮资。系统使用图形用户界面,用户在图形用户界面选择邮寄类型,再输入重量、距离和报价金额,单击确定按钮系统就计算出包裹的邮资。要求系统能够灵活的增减邮寄类型和修改某种邮寄类型的邮资计算方法。-use java to construct a sytem to calculate th cost of mail