Created
February 12, 2018 07:11
-
-
Save ryu1-1uyr/ad38381de89b3cce6da8eb68a45d3458 to your computer and use it in GitHub Desktop.
なんか回りくどい
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$prices = array(1000, 650, 750, 800); | |
echo '$pricesの値: '; | |
foreach ($prices as $price) { | |
echo $price.' '; | |
} | |
echo '<br>'; | |
echo '-----'; | |
echo '<br>'; | |
// この下にコードを書いてください | |
$ans = 0; | |
foreach($prices as $price) { | |
$ans += $price; | |
} | |
echo "合計金額は".$ans."円です"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment