彩色控制台(随机random)

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

namespace eluosi
{
    class Program
    {
        static void Main(string[] args)
        {
            Random r = new Random();
            Console.Title = "彩色控制台";
            while (true)
            {
                Console.BackgroundColor = (ConsoleColor)r.Next(9, 15);
                Console.ForegroundColor = (ConsoleColor)r.Next(9, 15);
                Console.Clear();
                for (int i = 0; i < 10; i++)
                {
                    Console.Write("张君红");
                }
                System.Threading.Thread.Sleep(1000);
            }
           Console.ReadLine();
        }
    }
}

posted @ 2014-11-30 20:43  jhycwnqry  阅读(150)  评论(0编辑  收藏  举报