Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTiong Shyue Ying
2,087 PointsCreate a FOR loop that displays each number from 1 to 100. Make sure that you DO NOT show 0 and you DO show 100.
It keep saying Bummer! Make sure you display each number from 1 to 100
<?php
$facts = array(
57 => ' on Heinz ketchup bottles represents the number of varieties of pickles the company once had.',
2 => ' is the approximate hours a day Giraffes sleeps',
18 => ' is the average hours a Python sleeps per day',
10 => ' per cent of the world is left-handed.',
11 => ' Empire State Buildings, stacked one on top of the other, would be required to measure the Gulf of Mexico at its deepest point.',
98 => '% of the atoms in your body are replaced every year',
69 => ' is the largest number of recorded children born to one woman',
);
//add your loop below this line
for($facts; $facts<=100; $facts++){
echo [$facts] . "<br />\n";
}
2 Answers
Antonio De Rose
20,885 Points1) the first challenge is to print numbers from 1 to 100
2) when you've been asked to create a for loop, you should use a different variable
than the existing one, you have used $facts, for eg $i
3) when you echo, you should echo the $i, and you should not use square brackets
<?php
for($i; $i<=100; $i++){
echo $i . "<br />\n";
}
?>
yalın küçük
4,810 PointsWhen you ask this question, you should not present the array values. That area should be empty.
This is really so frustrating..I was trying to figure that out but could not. I was trying to understand the relevance with the array structure. I was thinking the key numbers. Did the challenge ask for adding an additional number like a pair but in this case 0 here cannot be the the keys. Then I thought 0 here is the order of the array you know it starts with the 0 and I was thinking to use iteration before 'in the second expression' but in this case what the hell was 100. :)
Whoever created these challenges please do not confuse us. For the first task you should delete arrays. A mind is looking for the relevance and it is really painful. :)
Other than the lessons are great. Good job.
Tiong Shyue Ying
2,087 PointsTiong Shyue Ying
2,087 Pointsit works! Thanks for help and fast reply!