提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
用多条语句打印一行文本。
// from N o w J a v a . c o m public class Main { // main method begins execution of Java application public static void main(String[] args) { System.out.print("Welcome to "); System.out.println("Java Programming!"); } }