C# 기초
디아블로 아이템 사전
meltingmelvin
2023. 7. 19. 16:20
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);
}
}
}