c#/수업 과제

Splint Mail Gloves

yeeendy 2022. 12. 30. 17:05

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 nickname;
            nickname = "Splint Mail Gloves";
            Console.WriteLine("{0}", nickname);

            int minArmor = 49;
            int maxArmor = 56;
         
            Console.WriteLine("{0} - {1}", minArmor, maxArmor);

            string properties;
            properties = "4";
            Console.WriteLine("+{0} Random Magic Properties", properties);

            string person;
            person = "Blacksmith";
            Console.WriteLine("Crafted By: {0} (Level 2)", person);


           

        }
    }
}

'c# > 수업 과제' 카테고리의 다른 글

간호사 샐리  (0) 2023.01.01
버스트  (0) 2023.01.01
Chain Gloves  (0) 2022.12.30
Hide Gloves  (0) 2022.12.30
Gloves  (0) 2022.12.30