✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Скільки разів буде виконано цикл за заданою умовою:
int i, j;
i = 6;
j = 0;
do {--i;
++j;
System.out.print("*");
}
while (i > j);