✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
модифікувати в вашій програмі, щоб отримати правильний результат.
1 public class SomeClass {
2 public static void main (String [] args) {
3 String [] arr = { "H", "e", "l", "l", "o", "", "W", "o", "r", "l", "d", "!" };
4 String result = "";
5 int i = 0;
6 ...
7 System.out.print (arr [i ++]);
8 }
9 }
(Java)