Java: Print the contents of a two-dimensional Boolean array in specific format
Java Basic: Exercise-154 with Solution
Write a Java program to print the contents of a two-dimensional Boolean array where t represents true and f represents false.
Sample array:
array = {{true, false, true},
{false, true, false}};
Pictorial Presentation:

Sample Solution:
Java Code:
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
boolean[][] array = {{true, false, true},
{false, true, false}};
int rows_length = array.length;
int columns_length = array[0].length;
for (int i = 0; i < rows_length; i++) {
for (int j = 0; j < columns_length; j++) {
if (array[i][j]) {
System.out.print(" t ");
} else {
System.out.print(" f ");
}
}
System.out.println();
}
}
}
Sample Output:
t f t f t f
Flowchart:

Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program that accepts two double variables and test if both strictly between 0 and 1 and false otherwise.
Next: Write a Java program to print an array after changing the rows and columns of a given two-dimensional array.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join