import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ExamenOef1 extends JApplet implements ActionListener { JLabel lblInvoer, lblUitvoer; JTextField txtInvoer, txtUitvoer; public void init() { Container c = getContentPane(); c.setLayout(new GridLayout(2,2)); lblInvoer = new JLabel("Geef Invoerstring:"); lblUitvoer = new JLabel("Aantal klinkers:"); txtInvoer = new JTextField(); txtUitvoer = new JTextField(); txtUitvoer.setEditable(false); c.add(lblInvoer); c.add(txtInvoer); c.add(lblUitvoer); c.add(txtUitvoer); txtInvoer.addActionListener(this); } public void actionPerformed(ActionEvent e) { String invoer; int count = 0; String uitvoer = ""; invoer = txtInvoer.getText(); char array[] = invoer.toCharArray(); for(int teller=0;teller