sherylranka426
@sherylranka426

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

codecamp第4章‐22 課題(初級)

Discussion

Closed

100円のりんご1個と150円のグレープを1個購入した際の合計金額を計算し表示するよう、以下のプログラムへ追記してください。

<?php
 
$apple = 100;
$grape = 150;
 
/* 以下に「250」と合計金額が表示されるよう課題処理を追加 */
$total = $apple + $grape;

print $total;

?>
0

Your answer might help someone💌