Rename Parser class
This commit is contained in:
parent
48d49b2ef7
commit
1709b40cab
@ -4,16 +4,16 @@
|
|||||||
{
|
{
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
int count = IOParser.ParseNumber();
|
int count = InputParser.ParseNumber();
|
||||||
for (int i = 0; i < count; i++)
|
for (int i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
var numbers = IOParser.ParseNumbers();
|
var numbers = InputParser.ParseNumbers();
|
||||||
Console.WriteLine(numbers.Sum());
|
Console.WriteLine(numbers.Sum());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class IOParser
|
public static class InputParser
|
||||||
{
|
{
|
||||||
public static int[] ParseNumbers()
|
public static int[] ParseNumbers()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user