EasyCastleUNITY

디아블로 무기 Heavy Axe 본문

C#프로그래밍

디아블로 무기 Heavy Axe

EasyCastleT 2023. 7. 19. 16:03

using System;
using System.Data.SqlTypes;

namespace HelloWorld
{ 
    internal class Program
    {
        static void Main(string[] args)
        {
            string weaponName = "Heavy Axe";
            string weaponType = "Axe";
            float damage = 17.5f;
            int minDamage =10;
            int maxDamage =17;
            float attackSpeed = 1.30f;
            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#프로그래밍' 카테고리의 다른 글

디아블로 무기 God Butcher  (0) 2023.07.19
디아블로 무기 King's Sword of Haste  (0) 2023.07.19
디아블로 무기 Marauder Axe  (0) 2023.07.19
디아블로 무기 Hand Axe  (0) 2023.07.19
Hello World  (0) 2023.07.19