Skip to content

Instantly share code, notes, and snippets.

@rafacouto
Created April 14, 2015 18:30
Show Gist options
  • Save rafacouto/8cb00076aab4d7d66d59 to your computer and use it in GitHub Desktop.
Save rafacouto/8cb00076aab4d7d66d59 to your computer and use it in GitHub Desktop.
<?php
$a = 5;
$b = 5;
for ($aa = 0; $aa <= $a; $aa++)
{
for ($bb = 0; $bb <= $b; $bb++)
{
if ($aa == 0 || $bb == 0)
{
$v = $aa + $bb;
}
else
{
$v = $aa * $bb;
}
printf("%5u", ($v . " "));
}
print "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment