//Hello World by window import javax.swing.JOptionPane; public class demo2{ //Java 是由類別組成的 public static void main(String args[]){ //程式進入點 JOptionPane.showMessageDialog(null,"Hello World!\nStudents!"); //在視窗中印出字串 System.exit(0); } }