디아블로 아이템 사전
2023. 7. 19.

1

using System;
using System.ComponentModel;
using System.Xml.Linq;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {//1
            string weaponName = "Glorious Crescent Axe";
            string weaponType = "Rare Axe";
            float dps = 144.3f;
            int minDamage = 78;
            int maxDamage = 144;
            float aps = 1.30f;

            Console.WriteLine(weaponName+"\n"+weaponType);
            Console.WriteLine("{0}\nDamage Per Second",dps);
            Console.WriteLine("{0}-{1} Damage \n{2} Attacks per Second",minDamage,maxDamage,aps);


        }
    }
}

 

'C# 기초' 카테고리의 다른 글

스타크래프트  (0) 2023.07.19
캐스팅  (0) 2023.07.19
Hand Axe  (0) 2023.07.19
문자열 보간  (0) 2023.07.19
결합연산자  (0) 2023.07.19
myoskin