Question: Here is my Java code: package javaprog; import java.util.Random; public class JavaProg { private static final int SIZE = 11; public static int main(String[] args)

Here is my Java code:

package javaprog; import java.util.Random; public class JavaProg {

private static final int SIZE = 11; public static int main(String[] args) { static int rand13 () { int arrayOfVal[][] = {{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 }};

Random rand = new Random();

int i = rand.nextInt(11) + 1;

int j = rand.nextInt(11) + 1;

int resultRand13 = 0;

while (resultRand13 == 0)

{

i = rand.nextInt(11) + 1;

j = rand.nextInt(11) + 1;

resultRand13 = arrayOfVal[i-1][j-1];

}

return resultRand13;

} }

Why is it telling me I have an illegal start of my expression? How do I fix it?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!