반응형
딱 떠오른 코드
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string word = Console.ReadLine();
int num = 0;
foreach(char c in word)
{
num++;
}
Console.WriteLine(num);
}
}
}
개선한 코드
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string word = Console.ReadLine();
Console.WriteLine(word.Length);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 10842 +) overflow문제 (0) | 2023.10.27 |
---|---|
백준 C# - 11655 +)풀이 (0) | 2023.10.27 |
백준 C# - 10820 +)풀이 (0) | 2023.10.23 |
백준 C# - 10809 (0) | 2023.10.23 |
백준 C# - 10808 (0) | 2023.10.23 |
댓글