Erm score_percent is a double type of variable so the result comes out in like xx.xxxxxxxxx% :p Anyway to get rid of some of the decimal places or round?Code:score_percent = score/7.0*100.0;
score_results.setText("<html>Score: "+score+"/7 <br> That is: "+score_results+"%</html>");
And [CODE]score_percent = (int)score/7.0*100.0;
gives ultra weird errors xD
