文件名称:计算分数的精确值
介绍说明--下载内容均来自于网络,请自行研究使用
使用数组精确计算M/N(0<M<N<=100)的值。如果M/N是无限循环小数,则计算并输出它的第一循环节,同时要求输出 循环节的起止位置(小数位的序号)
*问题分析与算法设计
由于计算机字长的限制,常规的浮点运算都有精度限制,为了得到高精度的计算结果,就必须自行设计实现方法。
为了实现高精度的计算,可将商存放在一维数组中,数组的每个元素存放一位十进制数,即商的第一位存放在第一个元素中,商的第二位存放在第二个元素中....,依次类推。这样就可以使用数组不表示一个高精度的计算结果。
进行除法运算时可以模拟人的手工操作,即每次求出商的第一位后,将余数乘以10,再计算商的下一位,重复以上过程,当某次计算后的余数为0 时,表示M/N为有限不循环小数某次计算后的余数与前面的某个余数相同时,则M/N为无限循环小数,从该余数第一次出现之后所求得的各位数就是小数的循环节。
程序具体实现时,采用了数组和其它一些技巧来保存除法运算所得到的余数和商的各位数。
-arrays precise calculation of the M / N (0lt; Mlt; Nlt; = 100) value. If M / N is unlimited circulator, calculated and exporting its first cycle of festivals, while output cycle requirements of section starting and ending location (number of decimal places) * Analysis and design of computer algorithms size limitations, conventional precision floating-point operations have restrictions, in order to have a high-precision the results, we must design their own method. In order to achieve high precision calculations can be stored in a business-dimensional arrays, each array element placed a decimal number, the first one in a storage element, the second in the second storage element ..., followed by analogy. This array can use it does not mean that a highly accurate results. For computing divisi
*问题分析与算法设计
由于计算机字长的限制,常规的浮点运算都有精度限制,为了得到高精度的计算结果,就必须自行设计实现方法。
为了实现高精度的计算,可将商存放在一维数组中,数组的每个元素存放一位十进制数,即商的第一位存放在第一个元素中,商的第二位存放在第二个元素中....,依次类推。这样就可以使用数组不表示一个高精度的计算结果。
进行除法运算时可以模拟人的手工操作,即每次求出商的第一位后,将余数乘以10,再计算商的下一位,重复以上过程,当某次计算后的余数为0 时,表示M/N为有限不循环小数某次计算后的余数与前面的某个余数相同时,则M/N为无限循环小数,从该余数第一次出现之后所求得的各位数就是小数的循环节。
程序具体实现时,采用了数组和其它一些技巧来保存除法运算所得到的余数和商的各位数。
-arrays precise calculation of the M / N (0lt; Mlt; Nlt; = 100) value. If M / N is unlimited circulator, calculated and exporting its first cycle of festivals, while output cycle requirements of section starting and ending location (number of decimal places) * Analysis and design of computer algorithms size limitations, conventional precision floating-point operations have restrictions, in order to have a high-precision the results, we must design their own method. In order to achieve high precision calculations can be stored in a business-dimensional arrays, each array element placed a decimal number, the first one in a storage element, the second in the second storage element ..., followed by analogy. This array can use it does not mean that a highly accurate results. For computing divisi
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 41695037计算分数的精确值.rar 列表 计算分数的精确值.txt