https://www.acmicpc.net/problem/1550
Convert.ToInt32(string value, 16)으로 16진수를 10진수로 바꿔준다.
using System;
namespace _1550
{
class Program
{
static void Main()
{
string input = Console.ReadLine();
int output = Convert.ToInt32(input, 16);
Console.WriteLine(output);
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 2562 최댓값 (0) | 2023.08.21 |
---|---|
[ BOJ/C# ] 1157 단어 공부 (0) | 2023.08.20 |
[ BOJ/C# ] 1330 두 수 비교하기 (0) | 2023.08.20 |
[ BOJ/C++ ] 10699 오늘 날짜 (0) | 2023.08.20 |
[ BOJ/C# ] 14503 로봇 청소기 (0) | 2023.08.20 |