Skip to content

Instantly share code, notes, and snippets.

@pvolyntsev
Last active March 8, 2016 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pvolyntsev/7c9834985186d15f72ff to your computer and use it in GitHub Desktop.
Save pvolyntsev/7c9834985186d15f72ff to your computer and use it in GitHub Desktop.
<?php
/**
* Ответ на вопрос https://otvet.mail.ru/question/188212525
*/
$arr = array(1,2,3,0,4,5,6,0,8,9,10); // твой массив
$arr = array_reverse($arr);
$sum = 0;
foreach($arr as $element)
{
if (0 == $element)
break;
$sum += $element;
}
echo $sum;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment