w3resource

Java: Print the specified grid


Write a Java program to print the following grid.

Sample Solution:

Java Code:

// Define a class named Main.
public class Main {
    // The main method where the program execution starts.
    public static void main(String[] args) {   
        // Declare a two-dimensional integer array 'a' with dimensions 10x10.
        int[][] a = new int[10][10];    
        
        // Use nested loops to iterate over each row and column of the array.
        for (int i = 0; i < 10; i++) {
            for (int j = 0; j < 10; j++) {
                // Print each element of the array, ensuring a minimum width of 2 characters.
                System.out.printf("%2d ", a[i][j]);
            }
            // Move to the next line to represent a new row in the output.
            System.out.println();
        }
    }
}

Sample Output:

0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 
 0  0  0  0  0  0  0  0  0  0 

Flowchart:

Flowchart: Java exercises: Print the specified grid


For more Practice: Solve these Related Problems:

  • Write a Java program to print a diagonal pattern of stars in a square matrix.
  • Write a Java program to print a checkerboard pattern using a 2D array.
  • Write a Java program to print a triangle pattern with increasing numbers.
  • Write a Java program to print a Pascal’s triangle using an array.

Java Code Editor:

Previous: Write a Java program to sum values of an array.
Next: Write a Java program to calculate the average value of array elements.

What is the difficulty level of this exercise?

Based on 204 votes, average difficulty level of this exercise is Medium .

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.