문제 링크:https://nypc.github.io/2018/2018_online_5.html
코드
...더보기
내가 try는 왜썼지..참 더러운 코드입니다.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Windows;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string[] temp = File.ReadAllLines(Environment.CurrentDirectory + @"\input5.5.txt");
//Console.WriteLine(File.ReadAllText(Environment.CurrentDirectory + @"\input5.2.txt"));
string data = "";
for(int i = 0; i < temp.Length; i++)
{
string[] temp1 = temp[i].Split(' ');
for(int j = 0; j < temp1.Length; j++)
{
try
{
data += temp1[j].Substring(0, 1);
}
catch (Exception)
{
Console.WriteLine(temp1[j]);
}
}
data += "\n";
}
Console.WriteLine(data);
}
}
}
댓글