摘要: <!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style></head><body> <center> <h2>日 阅读全文
posted @ 2020-04-22 17:27 前端乔 阅读(174) 评论(0) 推荐(0) 编辑
摘要: <?php echo '<h1>while循环输出九九乘法表<h1>';$i=1;while ($i<=9) { $j=1; while ($j<=$i) { echo "$j*$i=".($j*$i); echo "&nbsp;"; $j++; }echo '<br>';$i++; }//for循 阅读全文
posted @ 2020-04-22 16:28 前端乔 阅读(588) 评论(0) 推荐(0) 编辑