0
Зачем в цикл do while добавлять инкремент например? (Это в языке C#)
Вот код: int x = 1; do { x++; Console.WriteLine(x); } while(x < 3); Объясните пожалуйста, зачем добавлять x++? Я знаю что чтобы цикл был не бесконечен но как это работает?
2 Respuestas
+ 1
I didn't understood your language if u asking for Output explanation here your initial value of x is 1 then it will run till upto x<3
when execution will start inside do while there is x++
Here x will incremet by 1 so x=2
console writeline will print 2 then it will check condition
2<3 this is true again loop will run and x++ here x will be 3 and it Will print then 3<3 which is false so execution will stop here . And finally u will get output
23
+ 2
Many thanks! Good luck writing your code