Question: Consider an 8 8 array for a board game: int [ ] [ ] board = new int [ 8 ] [ 8 ] ;

Consider an 88 array for a board game:
int[][] board = new int[8][8];
Using two nested loops, initialize the board so that zeroes and ones alternate, as on a checkerboard:
\table[[0,1,0,1,0,1,0,1],[1,0,1,0,1,0,1,0],[0,1,0,1,0,1,0,1],[.,.,.,,,,,],[1,0,1,0,1,0,1,0]]
Hint: Check whether i+j is even.
public class ArrayDemo
{
public static void main(String[] args)
{
int [][] board = new int [8][8];
for (int i=0;i8;i++)
{
for (int j=0;j8;j++)
{
Y* Your code goes here */
}
}
 Consider an 88 array for a board game: int[][] board =

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!