사이퍼즈

C#/수업 과제

C# 2023.1.1 아이템 기능 상세 출력 과제 (사이퍼즈 3)

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 itemname = "전투 장비 이용권[3일]\n"; string itmedesc = "사용 시.해당 기간 동안 '전투 장비 이용권' \n 슬롯을 이용할 수 있습니다\n"; Console.WriteLine(itemname); Console.WriteLine("{0,41}", "거래불가\n\n"); Console.WriteLine(itmedesc); ..

C#/수업 과제

C# 2023.1.1 아이템 기능 상세 출력 과제 (사이퍼즈 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 itemname = "낙하 강화P\n"; string itemcategory = "장신구ALL"; string itemclass = "로라스전용"; string itemgrade = "언커먼\n"; int attackpoint = 90; float cooltimepercent = -14.26f; string description = "낙하 강화 프리..

C#/수업 과제

C# 2023.1.1 아이템 기능 상세 출력 과제 (사이퍼즈 1)

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 itemname = "넬스 크리민P\n"; string itemcategory = "공격킷"; string itemgrade = "언커먼\n"; int attackpoint = 24; int criticalpercent = 29; string description = "공격력 증가와 동시에 치명타 증가 효과를 더한 능력자 전용 고급 캡슐\n\n"; ..

Bueong_E
'사이퍼즈' 태그의 글 목록