×
×
Correct!
Create a loop that runs from 0 to 9.
@(3) ($i = 0; $i < 10; @(4)) {
echo $i;
}
for ($i = 0; $i < 10; $i++) {
echo $i;
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 47 exercises.
Are you sure you want to continue?