【1019】hello,world

namespace _01我的第一个应用程序
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("呵呵,呵呵,呵呵!");
            Console.ReadKey();
            



            Console.WriteLine("Hello,World!");
            Console.ReadKey();
        }
    }
}

猜你喜欢

转载自blog.csdn.net/yanzifeiafei/article/details/81315960