4月13日 php
用php打印乘法表:
<html><head><title>我的第一個PHP頁面</title></head><body> <?php for($x=1;$x<=9;$x++){for($y=1;$y<=$x;$y++){ echo$x;echo'*';echo$y;echo'=';echo$x*$y; echo' '; }echo'<br/>';}?> </body> </html>轉載于:https://www.cnblogs.com/ds-3579/p/5385869.html
總結
- 上一篇: 如何提高SSD的使用寿命
- 下一篇: MapReduce V1:Job提交流程