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 trial
Matthew Dixon
Courses Plus Student 3,783 PointsAdjusting invalid numbers
The $numbers array in the code below contains one thousand numbers. I need to count how many of these numbers fit into each of the following categories: (a) how many of them are between 1 and 1000 inclusive, (b) how many of them are less than 1, and (c) how many of them are greater than 1000. I have created a foreach loop to look at each number one after the other, but right now itβs treating every number like it belongs in all three categories. Modify the code below so that the counts are correct.
Might be my dyslexia but i can't understand what im meant to do, heres my code.
<?php
require_once('model.php'); $numbers = get_numbers();
$count_less_than_one = 0;
$count_between_one_and_thousand = 0;
$count_greater_than_thousand = 0;
foreach ($numbers as $number) {
$count_less_than_one <= 1;
$count_between_one_and_thousand += 1;
$count_greater_than_thousand >= 1;
}
include('view.php');
?>
2 Answers
Andrei-Robert Rusu
763 PointsYou're simply asked to add a few if & else statements and change that code a bit.
Matthew Dixon
Courses Plus Student 3,783 Pointsalready done, sorry should of noted.
Thanks anyway, after breakfast i was feeling a lot more fresh!