docs(sumthemall): upgrade instructions

This commit is contained in:
Tiago Collot 2022-11-09 12:44:08 +00:00 committed by Dav Hojt
parent a96274cdab
commit ecc6bf9943
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
### Instructions
Create a program that receives a number of arguments representing whole numbers and displays the sum of the total. If there are not enough arguments or there is an overflow display 0 followed by a new line. If one of the arguments is not a number display 0 followed by a new line.
Create a program that takes `int`´s as arguments and returns the sum of all of them. If it is not a number, there are not enough arguments, or if there is an overflow, print `0` followed by a newline `\n`.
### Usage