백준 2557 Hello World

Console Programming/C# Console 2019. 9. 25. 16:08
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
 
namespace Syntax17
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("Hello World!");
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

 

: