Не могу найти ошибку вывод в консоль как на картинке, но проверку не проходит(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();
for (int j = 0; j < 10; j++){
if (j==3&&i==8){
System.out.print(robot);
}else if (i==9)
System.out.print(bug);
else if (j==3)
System.out.print(hole);
else
System.out.print(land);
}
}
}
}