translating

This commit is contained in:
Ilya Kantor 2016-03-21 10:16:55 +03:00
parent 2b874a73be
commit 928cd2731b
165 changed files with 2046 additions and 2967 deletions

View file

@ -0,0 +1,15 @@
importance: 4
---
# Sum input numbers
Write the function `sumInput()` that:
- Asks the user for values using `prompt` and stores the values in the array.
- Finishes asking when the user enters a non-numeric value, an empty string, or presses "Cancel".
- Calculates and returns the sum of array items.
P.S. A zero `0` is a valid number, please don't stop the input on zero.
[demo]