1
0

Rename Parser class

This commit is contained in:
Serghei Cebotari 2023-12-15 23:05:50 +03:00
parent 48d49b2ef7
commit 1709b40cab

View File

@ -4,16 +4,16 @@
{
public static void Main()
{
int count = IOParser.ParseNumber();
int count = InputParser.ParseNumber();
for (int i = 0; i < count; i++)
{
var numbers = IOParser.ParseNumbers();
var numbers = InputParser.ParseNumbers();
Console.WriteLine(numbers.Sum());
}
}
}
public static class IOParser
public static class InputParser
{
public static int[] ParseNumbers()
{