重复输出字符或字符串

Posted Insus.NET

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重复输出字符或字符串相关的知识,希望对你有一定的参考价值。

当你需要对某一字符或字符串重复输出时,可以参考下面2个方法。一个是new 字符串,另一个是使用Linq的Enumberable的Repeat方法来实现。

 

class Bo
    {
        public void RepeatCharacter(char c, int times)
        {
            string output = new String(c, times);
            Console.WriteLine(output);
        }

        public void RepeatString(string str, int times)
        {
            var output = string.Concat(Enumerable.Repeat(str, times));
            Console.WriteLine(output);
        }
    }
Source Code


测试:


 class Program
    {
        static void Main(string[] args)
        {
            Bo obj = new Bo();

            obj.RepeatCharacter(\'$\', 8);
            Console.WriteLine();

            obj.RepeatString("insus", 8);
            Console.WriteLine();
        }
    }
Source Code

 

以上是关于重复输出字符或字符串的主要内容,如果未能解决你的问题,请参考以下文章

PAT Basic 1078

1078. 字符串压缩与解压 (20)

输出多个重复字符或字符串

PAT 1078. 字符串压缩与解压

重复输出字符或字符串

重复输出字符或字符串