如何化简分数
我想简化我的应用程序中的一部分。分数就像, x/y 其中 x 和 y 是整数。 我想将分数简化为最简单的形式。 任何人都可以给我提示如何去做。 提前致谢。
I want to simplify a fraction in my application. The fraction is like,
x/y where x and y are integers.
I want to simplify the fraction to its simplest form.
Can anyone please give me hints how to do it.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
欧几里德算法 是计算 GCD 的简单方法。
Euclid's algorithm is an easy way to compute the GCD.
将两者除以
gcd(x,y)
二元 GCD 算法是计算 GCD 的快速方法在计算机上。
Divide both by
gcd(x,y)
The Binary GCD algorithm is a fast way to compute the GCD on a computer.