Home  >  Article  >  php教程  >  php99乘法表:php简单例子--打印出99乘法表

php99乘法表:php简单例子--打印出99乘法表

WBOY
WBOYOriginal
2016-06-21 08:50:021139browse

php简单例子--打印出99乘法表:
//php打印出九九乘法表
for ($i=1; $ifor ($j=1; $jecho $j*$i;
echo ' ';
}
echo '
';
}
?> 本文链接http://www.cxybl.com/html/wlbc/Php/20130326/37405.html



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn