C# Console Application uygulaması ile yapılmış ve renklendirilmiş çarpım tablosu örneği:

class Program
{
static void Main(string[] args)
{
for (int j = 1; j <= 10; j++)
{
for (int i = 1; i < 10; i++)
{
if (i% 2 == 0)
{
Console.ForegroundColor = ConsoleColor.Red;
}
else
{
Console.ForegroundColor = ConsoleColor.White;
}
Console.Write("{0}*{1}={2}\t", i, j, (i * j));
}
Console.WriteLine();
}
Console.ReadKey();
}
}
