C# 控制台输入、输出

实现输入、输出:

using System;

namespace test_path_wav
{
    class Program
    {
        static void Main(string[] args)
        {
            string a;
            a = Console.ReadLine();
            Console.WriteLine("{0},Hello World!",a);
        }
    }
}

 

posted @ 2019-09-25 08:16  zeug  阅读(4794)  评论(0编辑  收藏  举报