본문 바로가기
KDT/C# 프로그래밍

디아블로 아이템5

by 잰쟁 2023. 7. 20.
728x90

using System;
using System.ComponentModel;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {
            string itemName = "Heavy Boots";
            string itemType = "magic Boots";
            int maxDps = 30;
            int minDps = 34;
            string itemCategory = "Armor";
            int properties = 2;
            string craftName = "Blacksmith";
            int craftLevel = 1;

            Console.WriteLine(itemName);
            Console.WriteLine(itemType);
            Console.WriteLine("{0}-{1}", minDps, maxDps);
            Console.WriteLine(itemCategory);
            Console.WriteLine("+{0} Random Magic Properties", properties);
            Console.WriteLine("Crafted By: {0} (level {1})", craftName, craftLevel);
        }
        }

'KDT > C# 프로그래밍' 카테고리의 다른 글

enum 응용  (0) 2023.07.20
디아블로 아이템 열거형식(enum)  (0) 2023.07.20
스타크래프트 (마린 vs 저그)  (0) 2023.07.20
디아블로 아이템4  (0) 2023.07.19
디아블로 아이템3  (0) 2023.07.19