본문 바로가기

KDT103

디아블로 아이템5 using System; using System.ComponentModel; namespace HelloWorld { internal class Program { static void Main(string[] args) { string itemName = "Heavy Boots"; string itemType = "magic Boots"; int maxDps = 30; int minDps = 34; string itemCategory = "Armor"; int properties = 2; string craftName = "Blacksmith"; int craftLevel = 1; Console.WriteLine(itemName); Console.WriteLine(itemType); Console.Wri.. 2023. 7. 20.
스타크래프트 (마린 vs 저그) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HelloWorld { internal class Program { static void Main(string[] args) { string marineName = "Marine"; int marineMaxHp = 40; int marineHp = marineMaxHp; int marineAttack = 6; string zerlingName = "Zergeling"; int zergelingMaxHp = 35; int zergelingHp = zergelingMaxHp; int z.. 2023. 7. 20.
디아블로 아이템4 using System; using System.ComponentModel; namespace HelloWorld { internal class Program { static void Main(string[] args) { string itemName = "HEALTH POTION"; string itemtype = "Potion"; int restoreGage = 60; int maxStack = 5000; Console.WriteLine(itemName); Console.WriteLine(itemtype); Console.WriteLine("Instantly restores {0}% Life.", restoreGage); Console.WriteLine("Maximum Stack Amount: {0}.. 2023. 7. 19.
디아블로 아이템3 using System; using System.ComponentModel; namespace HelloWorld { internal class Program { static void Main(string[] args) { string itemName = "Veil of Steel"; string itemType = "Magic Helm"; int minlevel = 21; int maxlevel = 24; string typeName = "Armor"; Console.WriteLine(itemName); Console.WriteLine(itemType); Console.WriteLine("{0}-{1}", minlevel, maxlevel); Console.WriteLine(typeName); Cons.. 2023. 7. 19.
디아블로 아이템2 using System; using System.ComponentModel; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Club"; string weaponType = "Mace"; float dps = 5.4f; float minDamage = 3; float maxDamage = 6; float attackSpeed = 1.20f; Console.WriteLine(weaponName); Console.WriteLine(weaponType); Console.WriteLine(dps); Console.WriteLine("Damage Per Second"); Cons.. 2023. 7. 19.
디아블로 아이템1 using System; using System.ComponentModel; namespace HelloWorld { internal class Program { static void Main(string[] args) { string weaponName = "Hand Axe"; string weaponType = "Axe"; float dps = 3.2f; float minDamage = 2; float maxDamage = 3; float attackSpeed = 1.30f; Console.WriteLine(weaponName); Console.WriteLine(weaponType); Console.WriteLine(dps); Console.WriteLine("Damage Per Second"); C.. 2023. 7. 19.