Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

import java.awt.*; import java.applet.

Applet; public class Botones extends Applet{ Button b1, b2, b3; public void { b1 = b2 = b3 = init() new Button("Boton B1"); new Button("Boton B2"); new Button("Boton B3");

this.add(b1); this.add(b2); this.add(b3); } }

You might also like