สูตรคูณ
โปรแกรมนี้เขียนโดยใช้ภาษา HTML5 + PHP มีตัวอย่างทั้งหมด 2 ตัวอย่างดังนี้
สามารถ Download ไฟล์ได้ที่นี้ -> Download
สามารถ Download ไฟล์ได้ที่นี้ -> Download
สามารถ Download ไฟล์ได้ที่นี้ -> Download
ตัวอย่างที่ 1 แสดง แม่ 1 ถึง แม่ 12
โค้ค
<?php
echo "สูตรคูณ แม่ 1 ถึง 12 <p>";
for($i = 1;$i<=12;$i++){
echo "
<table border='1' style='display:table-cell'>
<tr>
<th>แม่ $i</th>
</tr>
";
for($j = 1;$j<=12;$j++){
$sum = $i * $j;
echo "
<tr>
<td>$i X $j = $sum</td>
</tr>
";
}
echo "</table>";
}
?>
ผลลัพธ์
ตัวอย่างที่ 2 กรองแม่สูตรคูณที่เราต้องการดู
โค้ค
<?php
echo "สูตรคูณ <p>";
//print_r($_POST);
if(isset($_POST["submit"])){
$number = $_POST["number"];
echo "
<form action='#' method='POST'>
กรองแม่สูตรคูณ <input type='number' min='1' name='number'
value='$number'>
<input type='submit' name='submit' value='OK'>
</form>
";
echo "
<table border='1'>
<tr>
<th>แม่ $number</th>
</tr>
";
for($i = 1;$i <= 12;$i++){
$sum = $i*$number;
echo "
<tr>
<td>$number X $i = $sum</td>
</tr>
";
}
echo "</table>";
}else{
echo "
<form action='#' method='POST'>
กรองแม่สูตรคูณ <input type='number' min='1' name='number' value='1'>
<input type='submit' name='submit' value='OK'>
</form>
";
}
?>
ผลลัพธ์
สามารถ Download ไฟล์ได้ที่นี้ -> Download
ความคิดเห็น
แสดงความคิดเห็น