반응형
SMALL
문제
코드
using System;
using System.IO;
namespace BOJ_11945
{
internal class Program
{
static void Main(string[] args)
{
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
StreamReader sr = new StreamReader(Console.OpenStandardInput());
int N = int.Parse(sr.ReadLine());
string[] names = new string[N];
for (int i = 0; i < N; i++)
{
names[i] = sr.ReadLine().ToLower();
sw.WriteLine(names[i]);
}
sr.Close();
sw.Close();
}
}
}
결과창
반응형
LIST
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ] 2581번 소수 C# 사용 풀이 (0) | 2023.02.06 |
---|---|
[BOJ] 2605번 줄세우기 C# 사용 풀이 (0) | 2023.02.05 |
[BOJ]11945번 뜨거운 붕어빵 C# 사용 풀이 (0) | 2023.02.05 |
[BOJ] 4796번 캠핑 C#사용 알고리즘 풀이 (0) | 2023.02.04 |
[BOJ] 1343번 폴리오미노 - C# 사용 - 미해결 (0) | 2023.02.04 |