C Цикли

2075 / C / Цикли

 

1.
for (int i = 1; i <= 5; i++)
{
}
 
2.
while (i > 0)
{
}
 
3.
do
{
}
while (i > 0);
 

 


 
break;
continue;