21. for Loop

zahro_11eecc01a1cfe5142b9

Zahro

Posted on October 16, 2024

21. for Loop

a) for loopda continue operatorining ishlatilishi

continue operatori for loopda ishlatilganda, hozirgi iteratsiya o'z yakuniga yetmaydi va keyingi iteratsiyaga o'tadi. Bu shart bajarilganda tsiklning qolgan qismi o'tkazib yuboriladi va for loopning keyingi bosqichiga o'tiladi.

Misol:

for (int i = 0; i < 5; i++)
{
    if (i == 2)
    {
        continue;  
    }
    Console.WriteLine(i);
}
Enter fullscreen mode Exit fullscreen mode

b) Quyidagi kodning natijasini ayting:

for (int i = 0; i < 5; i++)
{
    if (i == 2)
    {
        continue;
    }
    Console.WriteLine(i);
}
Enter fullscreen mode Exit fullscreen mode

Natija:

0
1
3
4

c) for loopdan foydalangan holda, 1 dan 10 gacha bo`lgan juft sonlarni ekranga chiqaruvchi kod yozing.


for (int i = 1; i <= 10; i++)
{
if (i % 2 == 0)
{
Console.WriteLine(i);
}
}

💖 💪 🙅 🚩
zahro_11eecc01a1cfe5142b9
Zahro

Posted on October 16, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related