Game Client Lee Hwanguk 2022. 12. 31. 22:02

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace helloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            string helmName;
            helmName = "Coif";

            int minArmor;
            int maxArmor;

            minArmor = 36;
            maxArmor = 41;

            string Properties;
            Properties = "+2 Random Magic Properties";

            Console.Write("{0}\n {1} - {2}\n {3}", helmName, minArmor, maxArmor, Properties);
        }
    }
}

문자열과 문자열 사이 한 줄 공백을 만들어야함. '\n' 을 사용