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

디아블로 아이템4

by 잰쟁 2023. 7. 19.
728x90

using System;
using System.ComponentModel;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {
            string itemName = "HEALTH POTION";
            string itemtype = "Potion";
            int restoreGage = 60;
            int maxStack = 5000;
            Console.WriteLine(itemName);
            Console.WriteLine(itemtype);
            Console.WriteLine("Instantly restores {0}% Life.", restoreGage);
            Console.WriteLine("Maximum Stack Amount: {0}",maxStack);
        }
        }
    }

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

디아블로 아이템5  (0) 2023.07.20
스타크래프트 (마린 vs 저그)  (0) 2023.07.20
디아블로 아이템3  (0) 2023.07.19
디아블로 아이템2  (0) 2023.07.19
디아블로 아이템1  (0) 2023.07.19