Write a Java program to print the contents of a two-dimensional Boolean array where t will represent true and f will represent false
- برمجة جافا
- برمجة
- 2021-04-30
- razanmazen8711884270
الأجوبة
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();
}
}
}
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
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال