gpt4 book ai didi

java - 如何在 Eclipse 控制台中显示 10000 位数字?

转载 作者:行者123 更新时间:2023-11-30 06:18:00 28 4
gpt4 key购买 nike

   StringBuilder sb = new StringBuilder();

for(int i =0; i<8000; i++){
sb.append("5");
}


BigInteger bi = new BigInteger(sb.toString());
System.out.println(bi);

我无法在控制台上显示如此庞大的数字(使用 eclipse)。此外,获取大量超时。请帮助在控制台上显示大量数字。

最佳答案

在 Eclipse 的首选项中,转到

Window > Preferences > Run/Debug > Console 

取消勾选

 "Limit console output"

这允许您打印无限行。如果你想限制某些行......使用选项

"Console buffer size"

enter image description here

关于java - 如何在 Eclipse 控制台中显示 10000 位数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25357672/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com