Q:

Write a C# Sharp program to create a new string which is n (non-negative integer) copies of a given string

0

Write a C# Sharp program to create a new string which is n (non-negative integer) copies of a given string

Sample Output:

JSJS
JSJSJS
JS

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
namespace exercises
{
   class Program
    {
        static void Main(string[] args)
        {
           Console.WriteLine(test("JS", 2));
           Console.WriteLine(test("JS", 3));
           Console.WriteLine(test("JS", 1));
           Console.ReadLine();
            
           Console.ReadLine();
        }
     public static string test(string s, int n)
        {
            string result = String.Empty;
            for (int i = 0; i < n; i++)
            {
                result += s;
            }
            return result;
        }
   }
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now