零末计算器

时间:2019-02-14 12:22:24

标签: php calculator

我想问一下如何在0末尾获得计算器结果。

我有: 18,3

我需要: 18,30

请帮助我。

我的代码:

<?php

$ilgis = (int) $_POST['ilgis'];
if ($ilgis <= 120) { 
  $a = $ilgis * 1.40;
} else { 
  $a = $ilgis * 1.70;
}

$plotis = (int) $_POST['plotis'];
if ($plotis <= 120) {
  $b = $plotis * 1.40;
} else {
  $b = $plotis * 1.70;
}

$total = $a + $b;

?>

0 个答案:

没有答案