В чем проблема?
package com.javarush.task.pro.task04.task0425;
/*
Диггер (1)
*/
public class Solution {
public static String bug = "🐛";
public static String robot = "🤖";
public static String land = "🌍";
public static String death = "💀";
public static String hole = " ";
public static void main(String[] args) {
for (int i = 0; i < 10; i++) {
System.out.println();
if (i == 9) {
for (int z = 0; z < 10; z++) {
System.out.print(bug);
}
}
else if (i == 8) {
for (int z = 0; z < 10; z++) {
if (z == 3) {
System.out.print(robot);
} else {
System.out.print(land);
}
}
}
else {
for (int z = 0; z < 10; z++) {
if (z == 3) {
System.out.print(hole);
} else {
System.out.print(land);
}
}
}
}
}
}