using System;
using System.Text;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static string SetSB(string[] arr)
{
StringBuilder sb = new StringBuilder();
foreach (string s in arr)
{
sb.Append(s).AppendLine();
}
return sb.ToString();
}
static void Main(string[] args)
{
string[] arr1 = { "c#", "java", "c++", "c" };
Console.WriteLine(SetSB(arr1));
string[] arr2 = { "css", "html", "php", "javascript" };
Console.WriteLine(SetSB(arr2));
}
}
}
/*
run:
c#
java
c++
c
css
html
php
javascript
*/