Interger.parseInt() problem
publicvoid convert()
{
int converts = Integer.parseInt(inputTextField.getText());
displayLabel.setText(inputTextField.getText());
}
i need to convert inputTextField to and int (done that) and then multiply it by 3 - stuck when i need to do the multiplication?
help please!!!

