Focus mode
Çok boyutlu diziler kullanılarak "yıldızlar" ile ekrana "B" harfi yazan programı yazınız.
* * * *
* *
* *
* * * *
* *
* *
* * * *
public class Main {
public static void main(String[] args) {
String[][] letter = new String[6][4];
for (int i = 0; i < letter.length; i++) {
for (int j = 0; j < letter[i].length; j++) {
if (i == 0 || i == 2) {
letter[i][j] = " * ";
} else if (j == 0 || j == 3) {
letter[i][j] = " * ";
} else {
letter[i][j] = " ";
}
}
}
for (String[] row : letter){
for (String col : row){
System.out.print(col);
}
System.out.println();
}
}
}
Programs to Accelerate Your Progress in a Software Career
Join our 4-8 month intensive Patika+ bootcamps, start with the fundamentals and gain comprehensive knowledge to kickstart your software career!
You need to enroll in the course to be able to comment!