Question: How do I convert this C++ program into Java? int rand13 () { int arrayOfVal[SIZE][SIZE] = {1, 2, 3, 4, 5, 6, 7, 8, 9,
How do I convert this C++ program into Java?
int rand13 () { int arrayOfVal[SIZE][SIZE] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 0, 0, 0, 0 }; unsigned seed = time(0); srand(seed); int i = rand() % 11 + 1; int j = rand() % 11 + 1; int resultRand13 = 0; while (resultRand13 == 0) { i = rand() % 11 + 1; j = rand() % 11 + 1; resultRand13 = arrayOfVal[i-1][j-1]; } return resultRand13; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
