搜索资源列表
fraction
- 分数类的定义和实现。例如分数的加减乘除运算和小数化为分数的实现-Score class definition and implementation. For example, addition and subtraction fraction into a decimal fraction multiplication and division operations and the realization of
fenshu_xiaoshu
- 通过简单的算法和较合理的数据结构,将所有的分数可以转化成小数。包括循环小数!-This program uses simple data ,and it works well
RecurDecimalPro
- 将分数转化为小数,对徐无限循环小数,能够给出循环节显示,如1/6表示为0.1(6)等-Will be converted to decimal points, infinitely recurring decimal for Xu, able to give a circular section shows, such as 1/6 is expressed as 0.1 (6), etc.
Haffman_tree
- 实现加减乘除运算和把小数转化为分数的形式表现出来的运算程序。- This programm can reality the arithmatic.
eryuanyici
- 解二元一次方程,可以分数、小数、分小数、显示分数、带分数选择-hello,this can do something unusual
Exp2_1
- 分数转换成小数,非常重要啊,要用数据结构-Fraction into a decimal
jiShuan
- 能进行四则运算的小程序,结果为分数形式或小数形式-Four operations can be a small program, the results for the fractional form or decimal form
exchange
- 任何小数都可以被划为分数,但是循环小数的实现和一般的有所区别,本程序主要实现的功能是如何实现将普通小数和循环小数转化为都准化为最简分数。-Any decimal can be classified as a fraction, but the recurring decimal to implement and in general different, the main achievement of the function of this program is how to achieve
Fraction
- 用C++实现分数或小数类,化为最简分数后,实现加减乘除-Addition, subtraction, multiplication and division, fractions or decimals class into the most simple score with C++
point-to-fenshu
- 小数变分数问题 求解 这是一个数据结构的课程设计-point change to fractional number
my_math
- 自动生成关于“+、-、*、/”,“整数、小数、分数”,“不同位数”,“试题数量”等的算术试题以及标准答案。适合1~5年小学生日常口算练习使用。是对VC各种按钮和EDIT控件使用的好样例。-to generate tests for oral mathematic, the operation can be+,-,*, or / the number can be integer, decimal, or fraction, and the digits can be 1 to 4.
用链表求循环小数
- 对于任意的真分数 N/M ( 0 < N < M ),均可以求出对应的小数。如果采用链表表示各个小数,对于循环节采用循环链表表示,则所有分数均可以表示为如下链表形式。 输入: N M 输出: 转换后的小数(不超过 50 位) 要求: 仅编写将分数转换为小数的函数 change( int n, int m, NODE * head ) 。 预设代码: /* PRESET CODE BEGIN - NEVER TOUCH CODE BELOW */ #in