I want to get two ints, one divided by the other to get a decimal or percentage. How can I get a percentage or decimal of these two ints? (I\'m not sure if it is right.. I\'
Well to make the decimal into a percent you can do this,
float percentage = (correct * 100.0f) / questionNum;