Skip to content

Instantly share code, notes, and snippets.

@lepig
Created March 7, 2019 09:32
Show Gist options
  • Save lepig/102bbbf29dac8e7664744ea9ccedeaf1 to your computer and use it in GitHub Desktop.
Save lepig/102bbbf29dac8e7664744ea9ccedeaf1 to your computer and use it in GitHub Desktop.
99乘法表
<?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