“В то время как синтаксис петли” Ответ

делать, пока петля

var i=0;
while (i < 10) {
	console.log(i);
	i++;
}
//Alternatively, You could  break out of a loop like so:
var i=0;
while(true){
	i++;
	if(i===3){
		break;
	}
}
Grepper

Петля, для, пока

openUrl("https://zoho.com","new window","successive=true");

Meandering Meerkat

В то время как синтаксис петли

while(condition)
{
    //statements
}
Siddhant

В то время как петля

A while loop statement in Java programming language repeatedly executes a target statement as long as a given condition is true. 

Syntax : 
while(Boolean_expression) {
   // Statements
}
Here, statement(s) may be a single statement or a block of statements. The condition may be any expression, and true is any non zero value. 

When executing, if the boolean_expression result is true, then the actions inside the loop will be executed. This will continue as long as the expression result is true.

When the condition becomes false, program control passes to the line immediately following the loop.
Important Ibis

в то время как петля

#input                                    # output
a=6                                        quantity of commodity=   
b=int(input("quantity of commodity="))     sampoo 
i=1                                        sampoo
while i <= b :                             sampoo
    if i>a:                                sampoo
        print("hello")                     sampoo
        break                              sampoo
    print('sampoo')                        hello  (it is printed when a<=7) 
    i+=1                                   thank you for coming
print("thank you for coming")

Gr@Y_orphan_ViLL@in##

Сделать .. во что петля

A do...while loop is similar to a while loop, except that a do...while loop is guaranteed to execute at least one time. 

Syntax : 
do {
   // Statements
}while(Boolean_expression);
Notice that the Boolean expression appears at the end of the loop, so the statements in the loop execute once before the Boolean is tested.

If the Boolean expression is true, the control jumps back up to do statement, and the statements in the loop execute again. This process repeats until the Boolean expression is false.
Important Ibis

Ответы похожие на “В то время как синтаксис петли”

Вопросы похожие на “В то время как синтаксис петли”

Больше похожих ответов на “В то время как синтаксис петли” по C

Смотреть популярные ответы по языку

Смотреть другие языки программирования