DEV Community

Firdavs Mukhsimov
Firdavs Mukhsimov

Posted on

while Loop (Advanced)

a) while loopdan foydalanib, foydalanuvchi ragam kiritgancha loopni davom ettirish kodini yozing (masalan, 0 kiritilganda loop tugaydi).

int num;

while(true)
{
    num = int.Parse(Console.ReadLine());

    if(num == 0)
    {
        break; // 0 kiritilganda loop to'xtaydi
    }
}
Enter fullscreen mode Exit fullscreen mode

b)Quyidagi kodning natijasi nima bo'ladi?

int x = 10;
while (x > 0)
{
    Console.WriteLine(x);
    x -= 2;
}
Javob:

10
8
6
4
2
Enter fullscreen mode Exit fullscreen mode

Top comments (0)