摘要: 如果遇到1000位的加减,只能通过模拟来确定精度 定义int 型数组存储大整数。 原则:整数的高位存储在数组的高位,整数的低位存储在数组的低位,因为在进行运算的时候都是从整数的低位到高位进行枚举,顺位存储和这种思维相吻合。 因此实际上是逆位存储,再度入后需要在另存为数组的时候反转。 定义结构体并初始 阅读全文
posted @ 2020-08-20 21:20 Heinrich♣ 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 题目描述: Goldbach's Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n = 阅读全文
posted @ 2020-08-20 10:47 Heinrich♣ 阅读(180) 评论(0) 推荐(0) 编辑