DEV Community

Sunnat Qayumov
Sunnat Qayumov

Posted on

2 2 2 2 2

31.do while Loop (Advanced)

a) do while loopda foydalanuvchi noto'g'ri parolni kiritganda, takroran parol so'raydigan kodni yozing (parol to'g'ri bo'lsa, loop to'xtaydi).

string To'g'ri = "12345";
string Tahmin;

do
{
    Console.Write("Parolni kiriting: ");
    Tahmin = Console.ReadLine();

    if (Tahmin != To'g'ri)
    {
        Console.WriteLine("Noto'g'ri parol! Qayta urinib ko'ring.");
    }
Enter fullscreen mode Exit fullscreen mode

b) Quyidagi kodning natijasini tushuntiring:

int y = 0:
do
{
    Console.WriteLine(y);
    y++;
}while(y < 5);
Enter fullscreen mode Exit fullscreen mode

*Javob: *

0
1
2
3
4
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay