EasyCastleUNITY

디아블로 무기 God Butcher 본문

C#프로그래밍

디아블로 무기 God Butcher

EasyCastleT 2023. 7. 19. 16:13

using System;
using System.Data.SqlTypes;

namespace HelloWorld
{ 
    internal class Program
    {
        static void Main(string[] args)
        {
            string weaponName = "God Butcher";
            string weaponType = "Sword";
            float damage = 4.2f;
            int minDamage =2;
            int maxDamage =4;
            float attackSpeed = 1.40f;
            Console.WriteLine(weaponName);
            Console.WriteLine(weaponType+"\n");
            Console.WriteLine("{0}",damage);
            Console.WriteLine("Damage Per Second\n");
            Console.WriteLine("{0}-{1} Damage", minDamage,maxDamage);
            Console.WriteLine("{0} Attacks per Second\n", attackSpeed);
        }
    }
}

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

디아블로 방어구 Veil of Steel  (0) 2023.07.19
디아블로 무기 Longsword  (0) 2023.07.19
디아블로 무기 King's Sword of Haste  (0) 2023.07.19
디아블로 무기 Marauder Axe  (0) 2023.07.19
디아블로 무기 Heavy Axe  (0) 2023.07.19