EasyCastleUNITY

디아블로 무기 Marauder Axe 본문

C#프로그래밍

디아블로 무기 Marauder Axe

EasyCastleT 2023. 7. 19. 16:05

using System;
using System.Data.SqlTypes;

namespace HelloWorld
{ 
    internal class Program
    {
        static void Main(string[] args)
        {
            string weaponName = "Marauder Axe";
            string weaponType = "Axe";
            float damage = 26.6f;
            int minDamage =15;
            int maxDamage =26;
            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
디아블로 무기 Heavy Axe  (0) 2023.07.19
디아블로 무기 Hand Axe  (0) 2023.07.19
Hello World  (0) 2023.07.19