반응형
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
int num = int.Parse(Console.ReadLine());
for (int i = 0; i<num; i++)
{
string a = Console.ReadLine();
string[] token = a.Split(' ');
StringBuilder sb = new StringBuilder();
for(int j = 0; j<token.Length; j++)
{
sb.Append(token[j].Reverse().ToArray());
sb.Append(' ');
}
Console.WriteLine(sb.ToString());
}
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 1874(+) 문제 설명 및 풀이) (0) | 2023.09.20 |
---|---|
백준 C# - 9012 (0) | 2023.09.19 |
백준 C# - 2501 (0) | 2023.07.18 |
백준 C# - 5086 (0) | 2023.07.15 |
백준 C# - 2869 +) 풀이 (0) | 2023.07.08 |
댓글