题目描述:给出一个小数的分子和分母,将这个小数转化成string类型表示的小数形式当小数出现循环时,用小括号将循环节括起来题目分析:这个题目重点是找到循环节对于存在循环节的情况,找到循环节是重点,我们 当什么情况下循环节完整的出现出现了呢? 我们不断的做除法,每次都会有一个余数,如果当前的余数在.....
分类:
其他好文 时间:
2015-01-14 00:50:21
阅读次数:
229
题目:
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in parent...
分类:
编程语言 时间:
2015-01-09 15:37:55
阅读次数:
295
题目描述:
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in pare...
分类:
其他好文 时间:
2015-01-08 13:27:49
阅读次数:
113
Fraction to Recurring Decimal
Total Accepted: 3168
Total Submissions: 27432
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
...
分类:
其他好文 时间:
2015-01-06 12:06:50
阅读次数:
174
Repeating DecimalsThe decimal expansion of the fraction 1/33 is, where theis used to indicate that the cycle 03 repeats indefinitely with no interveni...
分类:
其他好文 时间:
2015-01-04 19:10:32
阅读次数:
212
In mathematics, a rational number is any number that can be expressed in the form of a fraction p/q , where p & q are two integers, and the denominato...
分类:
其他好文 时间:
2015-01-04 08:40:57
阅读次数:
238
各种情况。有恶心的负数最值,用long long来做了。除此之外的情况下面都列出来了。/*1, 8 = 0.1251, 6 = 0.1(6)-50, 6 = -6.250, -3 = 0-1, -2147483648 = "0.0000000004656612873077392578125"*/ty...
分类:
其他好文 时间:
2015-01-01 00:02:23
阅读次数:
168
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.
If the fractional part is repeating, enclose the repeating part in parentheses.
...
分类:
其他好文 时间:
2014-12-30 20:42:23
阅读次数:
122
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is repeating,...
分类:
其他好文 时间:
2014-12-22 22:46:16
阅读次数:
197
For example,Given numerator = 1, denominator = 2, return "0.5".Given numerator = 2, denominator = 1, return "2".Given numerator = 2, denominator = 3, ...
分类:
其他好文 时间:
2014-12-22 00:56:39
阅读次数:
172