top of page
Ara

C# Matrix Yapımı

  • www.sametmedya.com
  • 21 Ara 2015
  • 1 dakikada okunur

Matrix Uygulaması İsterseniz Renklerini Değitirebilirsiniz :)

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;

namespace Uygulama_02 { class Program { static void Main(string[] args) { for (int i = 0; ; i++) { if (i%2==0) { Console.BackgroundColor = ConsoleColor.DarkBlue; } else { Console.BackgroundColor = ConsoleColor.Yellow; } Console.WriteLine(); } Console.ReadLine(); } } }

 
 
 

Comments


Tanıtılan Yazılar
Son Paylaşımlar
Arşiv
Etiketlere Göre Ara
Bizi Takip Edin
  • Facebook Basic Square
  • Twitter Basic Square
  • Google+ Basic Square
bottom of page