Please take a look at the code first:
int result = 0;
result = Convert.ToInt32((correctAnswer / 5) * 100);
When I debug the program, Correct Answer get the value 4. But it doesn't pass the value to result. correctAnswer is intger, and I tried
result = ((correctAnswer / 5) * 100);
I know there is simple error and I cannot seem to find it. Thank you