Skip to content

Instantly share code, notes, and snippets.

@lucapiccinelli
Last active October 8, 2020 20:12
Show Gist options
  • Save lucapiccinelli/abc20701b259f588a011e6a29e9a6d20 to your computer and use it in GitHub Desktop.
Save lucapiccinelli/abc20701b259f588a011e6a29e9a6d20 to your computer and use it in GitHub Desktop.
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