I have a label call scoreLabel and it shows the score the user will get. I want to convert the score to 100% so i try this
int sco = ((scoreLabel.getText()/16)*100); (16 is the total score)
But i get the error message saying operator / cannot to applied to java.lang.string,int
Can anyone help me with this?
