蓝桥oj610-分数 发表于 2024-03-11 更新于 2024-03-26 分类于 蓝桥杯 , 数论 , 简单题 阅读次数: Valine: 本文字数: 238 阅读时长 ≈ 1 分钟 题目 分析 首先是等比数列 然后一个数论知识 较大的数如果比较小的数的两倍大1或者小1,则两者互质。 代码 1234567public class Main { public static void main(String[] args) { System.out.print((int)Math.pow(2, 20) - 1); System.out.print('/'); System.out.print((int)Math.pow(2, 19)); }} 本文作者: pilot 本文链接: http://example.com/posts/7df5f4eb.html 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!