C# Console Application uygulaması ile yapılmış ve renklendirilmiş çarpım tablosu örneği:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
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(); } } |