您好,登錄后才能下訂單哦!
為了清晰地展示考試成績單,我們可以使用PHP的printf
函數來格式化輸出。以下是一個簡單的示例:
<!DOCTYPE html>
<html>
<head>
<title>考試成績單</title>
<style>
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h2>學生成績單</h2>
<table>
<tr>
<th>姓名</th>
<th>語文</th>
<th>數學</th>
<th>英語</th>
<th>總分</th>
</tr>
<?php
$students = array(
array("name" => "張三", "chinese" => 90, "math" => 85, "english" => 80),
array("name" => "李四", "chinese" => 75, "math" => 90, "english" => 70),
array("name" => "王五", "chinese" => 85, "math" => 80, "english" => 90)
);
foreach ($students as $student) {
$total = $student["chinese"] + $student["math"] + $student["english"];
printf("<tr>");
printf("<td>%s</td>", $student["name"]);
printf("<td>%d</td>", $student["chinese"]);
printf("<td>%d</td>", $student["math"]);
printf("<td>%d</td>", $student["english"]);
printf("<td>%d</td>", $total);
printf("</tr>");
}
?>
</table>
</body>
</html>
在這個示例中,我們首先創建了一個包含學生信息的二維數組。然后,我們使用foreach
循環遍歷數組,并使用printf
函數格式化輸出每一行的數據。最后,我們使用HTML表格元素將數據呈現為表格。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。