Witam,
Mam oto taki kod:
insertButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
int a = Integer.parseInt(textField.getText());
int b = Integer.parseInt(textField1.getText());
int wynik = a * b;
textArea.append("Pole= " + wynik + "\n");
textArea.append("Obwód = " + 2*a + 2*b + "\n");
}
});
Chodzi mi oto że wynik z pola jest dobry lecz obwodu już nie..
Przypomnę że pole prostokąta jest ab a obwód 2a2b
Pozdrawiam