아카이브

Hand Axe 본문

C#프로그래밍

Hand Axe

timbercat 2023. 7. 19. 16:22
using System;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {
            string weapon = "Axe";
            float damage = 3.2f;
            int minDamage = 2;
            int maxDamage = 3;
            float attackSpeed = 1.30f;

            Console.WriteLine("Hand "+ weapon);
            Console.WriteLine(weapon);
            Console.WriteLine();
            Console.WriteLine(damage);
            Console.WriteLine("Damage Per Second \n\n{0}-{1} Damage \n{2:0.00} Attacks per Second", minDamage, maxDamage, attackSpeed);
        }
    }
}

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

스타크래프트 enum  (0) 2023.07.20
스타크래프트  (0) 2023.07.19
Morning Star  (0) 2023.07.19
Dagger  (0) 2023.07.19
Helloworld  (0) 2023.07.19