1.按钮JButton public class Demo extends JFrame { public Demo() { setBounds(100, 100, 400, 200); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Container c = getContentPane(); c.setLayout(new GridLayout(2, 3, 10, 10)); JButton btn[] = new JBut…