I know you can do this using characters with the .charAt()
line but I'm wondering if there is anything like that for an Integer? This is in java.
EDIT:
This is the code im tring to do this to:
for(int j=0; j<lines; j++){
for (int k=0; k<quizKey.length; k++){
String lane = userAnswers
userIndividualAnswers[k][0] = userAnswers[0].IntAt(k);
}//end for loop
}//end for loop
obviously this is incorrect but using the math method how would i be able to convert the userAnswers ints separately? the userAnswers aray has like 5 ints in it.