Last active
October 8, 2020 20:12
-
-
Save lucapiccinelli/abc20701b259f588a011e6a29e9a6d20 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public static void Main(string[] args) | |
{ | |
// parsing dell'input | |
int[] inputNumbers = args.Select(int.Parse).ToArray(); | |
// calcolo della totalizzazione | |
int total = inputNumbers.Sum() | |
// stampa del totale in output | |
Console.WriteLine(total); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment