摘要: 计算100!: Console.WriteLine("BigInteger"); BigInteger result4 = 0; for (int i = 1; i <= 100; i++) { if (result4 == 0) { result4 = 1; } else { result4 = 阅读全文
posted @ 2023-01-11 15:00 ꧁执笔小白꧂ 阅读(95) 评论(0) 推荐(0)