using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CSstudy
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.Read();
}
}
}
'C# > C# (백준)' 카테고리의 다른 글
[C#] 백준 알고리즘 14681번, 사분면 고르기 (0) | 2022.07.19 |
---|---|
[C#] 백준 알고리즘 9498번, 시험 성적 (0) | 2022.07.18 |
[C#] 백준 알고리즘 2753번, 윤년 (0) | 2022.07.18 |
[C#] 백준 알고리즘 1330번, 두 수 비교하기 (0) | 2022.07.18 |
[C#] 백준 알고리즘 1000번, A+B (0) | 2022.07.18 |