打印二维数组并打印 * 奇数

发布于 2025-01-11 17:53:58 字数 106 浏览 0 评论 0原文

在此处输入图片说明 为什么控制台连续打印我的二维数组?

enter image description here
why does the console print my 2D array in a row?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋檐 2025-01-18 17:53:58

您使用的 System.out.print 不会在输出末尾附加换行符,这意味着它只会将所有内容打印到同一行。

您可以在顶级循环中添加行 System.out.println() ,但在内部循环之后,它将把每个第二级数组记录到它自己的行中。

You're using System.out.print which doesn't append a newline to the end of your output, meaning it will just keep printing everything to the same line.

You can add the line System.out.println() inside your top-level loop, but after your inner loop, and it will log each 2nd-level array to it's own line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文