import java.awt.*; import java.applet.Applet; public class FlowLayoutApplet extends Applet { public void init() { setLayout(new FlowLayout()); add(new Button("1")); add(new Button("2")); add(new Button("3")); add(new Button("4")); add(new Button("5")); add(new Button("6")); } }