반응형
StringBuilder 알아보러 가기
using System;
using System.Collections.Generic;
using System.Text;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string s1 = Console.ReadLine();
StringBuilder sb = new StringBuilder(s1);
string[] s2 = { "c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z=" };
for (int i = 0; i < s2.Length; i++)
{
sb.Replace(s2[i], "+");
}
Console.WriteLine(sb.ToString().Length);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 25206 (1) | 2023.05.15 |
---|---|
백준 C# - 1316 (0) | 2023.05.15 |
백준 C# - 4344 (0) | 2023.05.13 |
백준 C# 1157 (0) | 2023.05.08 |
백준 C# 10988 (0) | 2023.05.08 |
댓글