搜索资源列表
Rational
- 提供有理数的分数表示,可以自行设置有理数分母及分子的值并提供表示方法,可以进行加减乘除运算-Provide a fraction of rational numbers, rational numbers can set the value of the denominator and the molecular and provide representation, addition and subtraction multiplication and division can be
RationalNumber
- Java编写,在控制台下运行,一个有理数类,包含了对分数的输入输出的支持,并且对分数有自动化简功能。-Written in Java and run under the console, a rational class, which contains a fraction of the input and output support, and automation simple function scores.
rational
- 创建一个分数类Rational,用来执行分数的算术运算,并编写一个程序来测试该类。 (1)该类有两个成员变量,即分子和分母,均为整数类型 (2)定义一个构造函数,用来对类对象进行初始化。该构造函数必须对输入参数进行约减。例如,若给定的分数为2/4(即分子为2,分母为4),那么要把它约减为1/2,然后存储在相应的成员变量中,即分子为1,分母为2。 (3)定义一个add成员函数,实现两个分数的加法,其结果也应该是约减形式; (4)定义一个sub成员函数,实现两个分数的减法,结果为约减形式(C