Q:

Write a PHP program which iterates the integers from 1 to 100

0

Write a PHP program which iterates the integers from 1 to 100. For multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz"

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
for ($i = 1; $i <= 100; $i++)
{
  if ( $i%3 == 0 && $i%5 == 0 )
   {
     echo $i . " FizzBuzz"."\n" ;
   }
  else if ( $i%3 == 0 ) 
   {
     echo $i. " Fizz"."\n";
   }
     else if ( $i%5 == 0 ) 
   {
     echo $i. " Buzz"."\n";
   }
     else
   {
     echo $i."\n";
   }
 }
?>

Sample Output:

1                                                           
2                                                           
3 Fizz                                                      
4                                                           
5 Buzz                                                      
6 Fizz                                                      
7                                                           
8                                                           
9 Fizz                                                      
10 Buzz                                                     
......                                                
90 FizzBuzz                                                 
91                                                          
92                                                          
93 Fizz                                                     
94                                                          
95 Buzz                                                     
96 Fizz                                                     
97                                                          
98
99 Fizz                                                     
100 Buzz

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now