В чём может быть ошибка?
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<8) {
for (int a=0; a<10; a++)
if (a==3)
System.out.print(hole);
else
System.out.print(land);
} else if (i==8){
for (int r =0; r<10;r++){
if (r==3)
System.out.print(robot);
else
System.out.print(land);
}
} else if (i==9) {
for (int b=0; b<10; b++)
System.out.print(bug);
}
}
}
}
