Home > Backend Development > PHP Tutorial > PHP introductory learning knowledge point 8: Basic application of for loop in PHP: Nine-Nine Multiplication Table_PHP Tutorial

PHP introductory learning knowledge point 8: Basic application of for loop in PHP: Nine-Nine Multiplication Table_PHP Tutorial

WBOY
Release: 2016-07-21 15:27:16
Original
903 people have browsed it

Copy code The code is as follows:

/*
*Print multiplication table
*/
echo "Nine Ling Nine Multiplication Oral Table


";
echo "";
for($i=1;$ i<=9;$i++){
echo "";
for($j=1;$j<=$i;$j++){
echo "";
}
echo "";
}
echo "
".$j."*".$i."=".($j*$i)."
";
echo "





";
echo " ";
for($i=1;$i<=9;$i++){
echo "";
for($j=$i;$j< ;=9;$j++){
echo "";
}
echo "";
}
echo "
".$i."*".$j."=".($j*$i)."
";
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323818.htmlTechArticleCopy the code as follows: ?php /* *Print multiplication table*/ echo "Nine Spirits Nine Multiplication Table Juebiaobrbrbr"; echo "table"; for($i=1;$i=9;$i++){ echo "tr"; for($j=1;$j=$i;$j++){ echo " td".$j...
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template