Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Active listening is hard work. True False

Answered: 1 week ago

Question

How would we like to see ourselves?

Answered: 1 week ago