【PHP/演習問題】if文[1]

【PHP/演習問題】if文[1]

問題

お店のお会計で割引を適用するプログラムを作成してください。
なお、下記の条件を満たすものとします。

  • 合計金額は『単価×個数』で計算する
  • 単価は150円とする
  • 個数はコマンドライン引数で与える
  • 割引は個数が5個以上の場合、合計金額から10%OFF
$ php practice.php 8
割引金額         : 120円
合計金額(割引前) : 1200円
合計金額(割引後) : 1080円

解答例

<?php

// 個数
$unit = $argv[1];

// 単価
$price = 150;

// 合計金額(割引前)
$subtotal = $price * $unit;

// 合計金額(割引後)
$total = $subtotal;

// 割引金額
$discount = 0;

// 割引の適用
if( $unit >= 5 ) {
    $discount = $subtotal * 0.1;
    $total = $subtotal - $discount;
}

echo '割引金額         : '.$discount."円\n";
echo '合計金額(割引前) : '.$subtotal."円\n";
echo '合計金額(割引後) : '.$total."円\n";

?>