Created
March 7, 2019 09:32
-
-
Save lepig/102bbbf29dac8e7664744ea9ccedeaf1 to your computer and use it in GitHub Desktop.
99乘法表
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// exit; | |
for ($i = 1; $i < 10; $i++) { | |
for ($j = $i; $j < 10; $j++) { | |
echo "{$i}" . "x" . "{$j}" .'='. ($i * $j) . ' '; | |
} | |
echo "\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment