--- title: *例題*用陣列產生九九乘法表 tags: PHP基礎課程 --- 用陣列產生九九乘法表 === ```php= for($i=1;$i<=9;$i++){ for($j=1;$j<=9;$j++){ $nine["{$i}x{$j}"]=$i*$j; } } echo "<pre>"; print_r($nine); echo "</pre>"; ```
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up