Advertisement
ljukk

nasobilka

Dec 16th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Untitled Document</title>
  5. </head>
  6.  
  7. <body>
  8.  
  9. <?php
  10.  
  11. echo "<h1>Malá násobilka</h1>";
  12.     for($i=1;$i<=10;$i++) {
  13.         for($j=1;$j<=10;$j++) {
  14.             $vys=$i*$j;
  15.             echo $i." * ".$j." = ".$vys."<br />";  
  16.     }
  17.     echo "<br /><br />";
  18. }
  19.  
  20. ?>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement