import java.awt.GridLayout; import javax.swing.JButton; import javax.swing.JFrame; public class GridLayoutEx extends JFrame { public GridLayoutEx (){ setLayout(new GridLayout(0, 4)); //GridLayout(ํ, ์ด) setTitle("GridLayout ์ ๋๋ค"); setSize(300, 300); setLocationRelativeTo(null); //ํ๋ฉด ์ค์์ ์์ฑ setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); JButton bt1 = new JButton("๋ฒํผ1"); JButton ..