for Loop

firdavs_mukhsimov_9f62550

Firdavs Mukhsimov

Posted on October 14, 2024

for Loop

a) for loopda continue operatorining ishlatilishini
tushuntiring.

continue operatori for loopda ishlatilganda, 
bu shuni anglatadiki, continuedan keyingi kod 
ishlatilmaydi va loop keyingi qiymatni olib 
ishlashni davom ettiradi.
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);
}
*Javob: * 0, 1, 3, 4, 5.
Enter fullscreen mode Exit fullscreen mode

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

class Program
{
    static void Main()
    {
        for (int i = 1; i <= 10; i++)
        {
            if (i % 2 == 0)
            {
                Console.WriteLine(i);
            }
        }
    }
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
firdavs_mukhsimov_9f62550
Firdavs Mukhsimov

Posted on October 14, 2024

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

Sign up to receive the latest update from our blog.

Related