嘿,使用以下代码我试图围绕变量$ CelNum,因为我是PHP的新手,如果你能帮助我,我不确定如何正确地做到这一点我会很感激。
<head>
<title>Temp Conversion</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<?
$FarNum = 0;
$CelNum = 0;
while ($FarNum <= 100)
{
$CelNum = ($FarNum - 32)*5/9;
echo "<p>$FarNum = $CelNum</p>";
$FarNum++;
}
答案 0 :(得分:0)
我假设您正在尝试打印1F - 100F的摄氏度值。您必须round
循环内CelNum
的值才能正常工作:
while ($FarNum <= 100)
{
$CelNum = round( ($FarNum - 32)*5/9 );
echo "<p>$FarNum = $CelNum</p>";
$FarNum++;
}
如果你想更准确,你可以把它四舍五入到小数位:
$CelNum = ($FarNum - 32)*5/9;
$CelNum = round($CelNum, 2); // eg: -17.78
答案 1 :(得分:0)