程序1
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Please Input Some Words:");
            string inputData = Console.ReadLine();
            Console.WriteLine(inputData);
            Console.Read();
        }
    }
}

相关文章:

  • 2021-06-14
  • 2022-01-13
  • 2021-08-03
  • 2022-01-07
  • 2021-12-08
  • 2021-05-01
  • 2021-11-11
猜你喜欢
  • 2021-12-01
  • 2021-06-15
  • 2021-11-28
  • 2022-12-23
  • 2021-12-06
  • 2022-01-04
相关资源
相似解决方案