✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What does the following Java code display on the screen?
int rows = 4;
String output = "";
for (int i = 0; i < rows; i++)
{
output = output + i;
for (int j = 0; j < i; j++)
output = output + "*";
}
System.out.print(output);