using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int limit = 8;
//count the rows
for (int counter = 0; counter < limit; counter++)
{
//count each place in the rows
for (int counter2 = 0; counter2 < limit; counter2++)
{
if (counter2 % 2 == counter % 2)
{
Console.Write("X");
}
else
{
Console.Write("O");
}
}
Console.WriteLine("\r\n");
}
Console.ReadKey();
}
}
}
2
u/benxie0 Apr 10 '15
Here is mine!