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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started