diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-08-11 10:08:25 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-08-11 10:08:25 +0300 |
commit | 04c720278a3eb5b45ddf9683f5f42255dff23d09 (patch) | |
tree | f87e49bf8838a5b735e7482044e07e373e4709be | |
parent | 9fb4a077cb772617aa4b0f1af0b211e47673af24 (diff) |
Add read input method
-rw-r--r-- | Codeforces.Console/Program.cs | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Codeforces.Console/Program.cs b/Codeforces.Console/Program.cs index ac18de4..029f76d 100644 --- a/Codeforces.Console/Program.cs +++ b/Codeforces.Console/Program.cs @@ -4,14 +4,22 @@ { public static void Main() { - int count = int.Parse(Console.ReadLine()!); - for (int i = 0; i < count; i++) + int count = int.Parse(Console.ReadLine()); + for (int i = 0; i < count; i++) { - var numbers = Console.ReadLine()! + var numbers = Console.ReadLine() .Split(' ') .Select(x => int.Parse(x)); Console.WriteLine(numbers.Sum()); } } + + public static int[] ParseInput() + { + return Console.ReadLine() + .Split(' ') + .Select(x => int.Parse(x)) + .ToArray(); + } } }
\ No newline at end of file |