pastebin

Paste Search Dynamic
Recent pastes
raised to the power
  1. <?php
  2. $x=3;
  3. $y=400;
  4. $power=1;
  5. for($i=1;$i<=$y;$i++)
  6.  $power=$power*$x;
  7.   echo $x.' raised to the power '.$y.' = '.$power;
  8.  
  9. ?>
Parsed in 0.020 seconds