
2022.12.30 C# 수업과제 (디아블로 아이템 2)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace diablo_game_item { class Program { static void Main(string[] args) { string ShoulderName = "Razeth's Volition"; string ShoulderLevel = "Legendary Shoulders"; int minShoulderArmor = 58; int maxShoulderArmor = 68; string category = "Armor"; string mainFunction = "Primary"; ..