About Question enthuware.ocajp.i.v7.2.1384 :
Posted: Sat Jan 31, 2015 12:15 am
I think there are some typos:
In both nested IF conditions we should right:
y < table[x].length;
Instead of zero index...
Code: Select all
public static void init()
{
for (int x = 0; x < table.length; x++)
{ for (int y = 0; y < table[0].length; y++)
{ //insert code to initialize
}
}
}
Code: Select all
public static void multiply()
{
for (int x = 0; x < table.length; x++)
{ for (int y = 0; y < table[0].length; y++)
{ //insert code to multiply
}
}
}
y < table[x].length;
Instead of zero index...