# जबतक()
# काम
जबतक में दिए हुए शर्त(Condition) के पूरा होने तक आगे के कोड को रन करे |
# इसका उपयोग कैसे करे?
1: Define जबतक(YourCondition ) The accepted comparison operators are:
> - Greater than
< - Less than
== - is Equal to
!= - is Not Equal to
# उदाहरण
count=0
जबतक(count<25)
{
प्रिंट(count)
count=count+1
}
The code will run until the condition evaluates itself to true.
When the value of count reaches 26, code execution will stop.