[code type=java] // FlowEx1.java import java.awt.*; import java.awt.event.*; class FlowEx1 extends Panel{ Label label1; Button btn1, btn2; public FlowEx1(){ label1 = new Label("버튼 라벨"); btn1 = new Button("누르는 버튼 1"); btn2 = new Button("누르는 버튼 2"); setLayout(new FlowLayout()); // 기본적으로 FlowLayout이므로 지정하지 않아도 된다. // 버튼 라벨 누르는 버튼 순서로 보인다. add(label1); add(btn1); add(btn2); } public static void main..