how to change value integer to integer array in java code example
Example 1: how to convert int into int array of digits in java
String temp = Integer.toString(guess);
int[] newGuess = new int[temp.length()];
for (int i = 0; i < temp.length(); i++)
{
newGuess[i] = temp.charAt(i) - '0';
}
Example 2: how to convert array to int
int i, k = 0;
for (i = 0; i < n; i++)
k = 10 * k + a[i];