接受 用户输入直 并转换字符 输出!

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

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            string username;
            username = Console.ReadLine();
            Console.WriteLine("welcome {0}!",username);
            Console.ReadKey();
        }
    }
}

posted @ 2011-04-22 12:45  邪灵  阅读(71)  评论(0)    收藏  举报