//hello.cs
using System;
class Welcome
{
 static void Main(){
    Console.WriteLine("你好,我是toll,请问怎么称呼?");
    //input
    string name=Console.ReadLine(); //read
    Console.WriteLine("很高兴能认识你,{0}!",name);
  }
}

相关文章:

  • 2022-02-22
  • 2022-02-09
  • 2022-03-15
  • 2021-07-26
  • 2021-09-23
  • 2021-12-01
  • 2021-11-09
猜你喜欢
  • 2021-09-09
  • 2021-07-24
  • 2022-01-17
  • 2021-06-29
  • 2022-01-29
  • 2021-12-11
  • 2022-02-24
相关资源
相似解决方案