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<=9;i++){ for (int j=0;j<=9;j++){ if(i<=7 && j==3){ System.out.print(hole); }else if(i==8 && j==3){ System.out.print(robot); }else if(i==9){ System.out.print(bug); }else{ System.out.print(land);} } System.out.println(hole); } //напишите тут ваш код } }