Wstecz
Zadanie 4.

$x = 0;
while($x < 5){
 echo "$x,";
 $x++;
}
 

Wskaż instrukcję równoważną funkcjonalnie do instrukcji while zapisanej w języku PHP.

  1. Instrukcja 1
  2. Instrukcja 2
  3. Instrukcja 3
  4. Instrukcja 4
C