如何使用php创建摄氏到华氏转换表?

时间:2018-11-26 09:50:05

标签: php converters

作为计算机科学工作的一部分,我需要使用php创建一个表,该表将摄氏度值转换为华氏度。从0到50。所附图像显示所需的结果。谁能给我一个提示,或者提供代码? 预先非常感谢。

Celsius to fahrenheit php conversion table

2 个答案:

答案 0 :(得分:0)

这是答案:

<?php

$celsius = 0;

while ($celsius <= 50) {

    $fahrenheit = $celsius * 1.8 + 5;

    echo "<tr>";
    echo "<td>$celsius&deg</td>";
    echo "<td>$fahrenheit&deg</td>";

    $celsius = $celsius + 5;
}

?>

答案 1 :(得分:-2)

在你的班级同伴^ _ ^

<?php
function getFahrenheit(int $celsius)
{
    return ($celsius * 9/5) + 32;
}

echo "<table><tr><th>Celcius</th><th>Fahrenheit<th></tr>";
for($celcius = 0; $celcius <= 50; $celcius+=5) {
    echo sprintf("<tr><td>%d</td><td>%d</td></tr>", $celcius, getFahrenheit($celcius));
}
echo "</table>";