https://www.acmicpc.net/problem/1264
string의 ToLower을 사용하여 대문자를 소문자로 바꿔준다.
using System;
using System.IO;
using System.Text;
namespace _1264
{
class Program
{
static void Main(string[] args)
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
StringBuilder sb = new StringBuilder();
while (true)
{
string str = sr.ReadLine();
int n = 0;
if (str == "#") break;
string lower = str.ToLower();
for (int i = 0; i < lower.Length; i++)
{
if (lower[i] == 'a' || lower[i] == 'e' || lower[i] == 'i' || lower[i] == 'o' || lower[i] == 'u')
{
n++;
}
}
sb.Append(n+"\n");
}
sw.WriteLine(sb.ToString());
sr.Close();
sw.Flush();
sw.Close();
}
}
}
구현 문제들로 어느 정도 입출력 형식에 익숙해졌으니 내일은 다른 유형의 문제들도 풀어봐야겠다.
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C++ ] 10699 오늘 날짜 (0) | 2023.08.20 |
---|---|
[ BOJ/C# ] 14503 로봇 청소기 (0) | 2023.08.20 |
[BOJ/C#] 1152 단어의 개수 (0) | 2023.08.16 |
[ BOJ/C++] 10171 고양이, 10172 개 (0) | 2023.07.25 |
[BOJ/C++] 2557 Hello World, 10699 오늘 날짜 (0) | 2023.07.14 |