[.NET]我的hello.cs

//hello.cs
using System;
class Welcome
{
 static void Main(){
    Console.WriteLine("你好,我是toll,请问怎么称呼?");
    //input
    string name=Console.ReadLine(); //read
    Console.WriteLine("很高兴能认识你,{0}!",name);
  }
}
posted @ 2004-08-05 17:53  Toll  阅读(597)  评论(3编辑  收藏  举报