Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的那么我如何让我的 printscreen 语句在控制台中看起来像这样:
欢迎来到 55x2 骰子游戏! 骰子游戏菜单: [1]:立即播放! [2]:怎么玩 [3]:退出
欢迎来到 55x2 骰子游戏!
骰子游戏菜单:
[1]:立即播放!
[2]:怎么玩
[3]:退出
还有一个快速的问题,如果选择它,我要写什么来退出应用程序?
用于System.out.println("text")打印带有作为参数传递的文本的新行。
System.out.println("text")
要退出应用程序,请使用:
System.exit(0);