import java.awt.FlowLayout; import javax.swing.JButton; import javax.swing.JFrame; public class FlowLayoutEx extends JFrame { public FlowLayoutEx (){ setLayout(new FlowLayout()); //ํ๋ ์ ๋ฐฐ์น๊ด๋ฆฌ์ setTitle("FlowLayout ์ ๋๋ค"); setSize(300, 300); setLocationRelativeTo(null); //ํ๋ฉด ์ค์์ ์์ฑ setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); setVisible(true); JButton bt1 = new JButton("๋ฒํผ1"); JButton bt2 = new J..