DEV Community

asilbek ibragimov
asilbek ibragimov

Posted on • Edited on

1 2 1 1 1

6.Loops

6.Loops(for, while, do while)

a) for loopning sintaksisisi qanday? Misol keltiring.
b) while loop va do while loop o'rtasidagi farq nima?
c) Quyidagi kodning natijasini ayting:

    int i = 0;
    while(i < 5)
    {
         Console.WriteLine(i);
         I++;
    }
Enter fullscreen mode Exit fullscreen mode

Test Javoblari:

 a) for(int variable = qiymat, variable = son; increment or 
 decrement;)
 {
    Sharti;
 }
 b) while loop - bu takrorlanuvchi blokni bajarish uchun 
 ishlatiladigan sikl operatori.
 C# dasturlash tilida do while sikli (do-while loop) ma'lum 
 bir kodni kamida bir marta bajarishni ta'minlaydi va undan 
 keyin shart tekshiriladi.

 c)code xato bo'lgan chunki kotta I yozilgan.
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