字符串整数的余数leetcode-fraction-to-recurring-decimal:分数到循环小数

时间:2024-07-20 05:21:13
【文件属性】:

文件名称:字符串整数的余数leetcode-fraction-to-recurring-decimal:分数到循环小数

文件大小:1KB

文件格式:ZIP

更新时间:2024-07-20 05:21:13

系统开源

字符串可能的余数分数到循环小数 给定两个表示分数分子和分母的整数,以字符串格式返回分数。 如果小数部分是重复的,请将重复部分括在括号中。 Example 1: Input: numerator = 1, denominator = 2 Output: "0.5" Example 2: Input: numerator = 2, denominator = 1 Output: "2" Example 3: Input: numerator = 2, denominator = 3 Output: "0.(6)" 测试用例 : **Integer.MIN_VALUE = -2147483648 , Integer.MAX_VALUE = 2147483647 ** 测试用例 解释 0 / 1 分子为零。 1 / 0 除数为 0,应该通过抛出异常来处理它,但为了简单起见,我们在这里忽略。 20 / 4 答案是一个整数,不应包含小数部分。 1 / 2 答案是 0.5,没有循环小数。 -1 / 2 或 1 / -2 分子或分母之一为负,分数为负。 -1 / -2 分子和分母都是负数,应该得到正分


【文件预览】:
fraction-to-recurring-decimal-master
----README.md(3KB)

网友评论