溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

格式化考試成績單,PHP printf的清晰展示

發(fā)布時間:2024-10-28 18:42:16 來源:億速云 閱讀:79 作者:小樊 欄目:編程語言

為了清晰地展示考試成績單,我們可以使用PHP的printf函數(shù)來格式化輸出。以下是一個簡單的示例:

<!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>學(xué)生成績單</h2>

<table>
    <tr>
        <th>姓名</th>
        <th>語文</th>
        <th>數(shù)學(xué)</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>

在這個示例中,我們首先創(chuàng)建了一個包含學(xué)生信息的二維數(shù)組。然后,我們使用foreach循環(huán)遍歷數(shù)組,并使用printf函數(shù)格式化輸出每一行的數(shù)據(jù)。最后,我們使用HTML表格元素將數(shù)據(jù)呈現(xiàn)為表格。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI