C#/C# (백준)

[C#] 백준 알고리즘 2557번, Hello World

서니션 2022. 7. 18. 15:12
728x90
반응형

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();
        }
    }
}
728x90
반응형