Цикли

for (int i = 1; i <= 5; i++) 

}

break;

continue;

while (i > 0)

{

}

do

{

}

while (i > 0);

for (int x : arr)     // auto

[ pdf ]