code2

来源:互联网 发布:mindmanager mac 密钥 编辑:程序博客网 时间:2024/05/22 17:09
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;


namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            new Thread(Go).Start();
            Go();
        }
        static void Go()
        {
            for (int cycles = 0; cycles < 5; cycles++)
            {
                Console.Write('?');
            }
        }
    }
}
0 0
原创粉丝点击