Blogger Information
Blog 3
fans 0
comment 0
visits 2449
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
用PHP生成一个99乘法表
蔚蓝的彼岸
Original
1010 people have browsed it

<?php
for($i=1;$i<=9;$i++){
   for($j=1;$j<=$i;$j++){
       echo '<div style="border: 1px solid #66afe9;width: 70px;display: inline-block">'.$j.'*'.$i.'='.$i*$j.'</div>';
   }
   echo '<br>';

}



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post