public static void Main()
public static void TestOne()
for(int row = 0; row < 5; row++)
for(int col = 5; col >= 0; col--)
public static int CheckSum(int numberOfElements)
int sum = 0, counter = 1;
for(int index = 0; index < numberOfElements; index++)
public static bool CheckBoolSum(int numberOfElements)
int sum = 0, counter = 1;
for(int index = 0; index < numberOfElements; index++)
result = sum > 8 ? true : false;
Console.Write(sum + " - ");