최근에 다시 백준 연습을 다시 시작하며 인턴 동기와 함께 스터디를 시작했다.
이전에는 '문제를 해결하는 것'에 집중했다면,
이번에는 '문제를 어떻게 해결하는 것'에 집중하여 새롭게 풀어보기로 하였다.
2557 : Hello World
using System;
namespace HELLOWORLD
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
https://www.acmicpc.net/problem/2557
1000 : A+B
using System;
namespace AB
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = Console.ReadLine().Split(' ');
int a = int.Parse(arrStr[0]);
int b = int.Parse(arrStr[1]);
int answer = a + b;
Console.WriteLine(answer);
}
}
}
https://www.acmicpc.net/problem/1000
1001 : A-B
using System;
namespace AB
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = Console.ReadLine().Split(' ');
int a = int.Parse(arrStr[0]);
int b = int.Parse(arrStr[1]);
int answer = a - b;
Console.WriteLine(answer);
}
}
}
https://www.acmicpc.net/problem/1001
10998 : AxB
using System;
namespace AB
{
class Program
{
static void Main(string[] args)
{
string[] arrStr = Console.ReadLine().Split(' ');
int a = int.Parse(arrStr[0]);
int b = int.Parse(arrStr[1]);
int answer = a * b;
Console.WriteLine(answer);
}
}
}
https://www.acmicpc.net/problem/10998
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[BOJ/C#] 1008 : A/B (0) | 2024.11.11 |
---|---|
[ BOJ/C# ] 9655 돌 게임 (0) | 2023.11.11 |
[ BOJ/C# ] 1475 방 번호 (1) | 2023.11.10 |
[ BOJ/C# ] 1065 한수 (0) | 2023.11.08 |
[ BOJ/C# ] 4673 셀프 넘버 (0) | 2023.11.07 |