The while statement.
The construction of the while statement:
While (Execution Condition) {
The body of the cycle;
}
The do ... while operator:
The construction of the operator do while:
Do {
The body of the cycle;
} While (condition of execution);
The difference of this operator from while is only that it is a postcondition operator (first execute, then check).
That is, even if the condition is never satisfied, all the same, the action will be executed once.
In questa pagina del sito puoi guardare il video online The while loop operators, do ... while della durata di ore minuti seconda in buona qualità , che l'utente ha caricato JavaLight 17 aprile 2017, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 42 volte e gli è piaciuto 1 spettatori. Buona visione!