//string str = new string('a', 21);
            //Console.WriteLine(str);
            //Console.ReadKey()
            string str="";
            for (int i = 0; i < 20; i++)
            {
                str += "A";
            }
            Console.WriteLine(str);
            Console.ReadKey();

相关文章:

  • 2021-11-30
  • 2021-11-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-16
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-05-26
  • 2022-12-23
相关资源
相似解决方案