Advertisement
ini_PlayeR

While_4

Apr 14th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. <?php
  2.     $i=1;
  3.     while($i<=10)
  4.     {
  5.         $x=1;
  6.         while($x<=10)
  7.         {
  8.             $jum=$i*$x;
  9.             echo $i." x ".$x." = ".$jum."<br>";
  10.             $x++;
  11.         }
  12.         $i++;
  13.     }
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement