打印二维数组并打印 * 奇数
在此处输入图片说明 为什么控制台连续打印我的二维数组?
enter image description here
why does the console print my 2D array in a row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在此处输入图片说明 为什么控制台连续打印我的二维数组?
enter image description here
why does the console print my 2D array in a row?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您使用的 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.