How to find the sum of all the multiples of 3 or 5 below 1000 through PHP

+2 votes
45 views
asked Jan 11, 2017 in PHP by Rohit Singh (61,782 points) 36 142 443

1 Answer

+2 votes
answered Jan 11, 2017 by Abhishek Kumar (14,593 points) 5 9 37
selected Jan 11, 2017 by Rohit Singh
 
Best answer

Solution: To find the multiple of 3 or 5 simply write and run the following code

let variables be  $sum = 0, $n

<?php
$sum = 0;
for ($n = 0; $n < 1000; $n++) 
{
 if (!($n % 5) || !($n % 3)) 
   {
     $sum += $n;
   }
 }
echo $sum;

?>

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

One Thought Forever

“There is a close connection between getting up in the world and getting up in the morning.“
– Anon
~~~*****~~~

...