코딩연습

C#/수업 과제

C# 2023.1.1 아이템 기능 상세 출력 과제 (파이널 판타지14 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 itemstatus = "아이템 분해\n"; string itemstatus2 = "대상 아이템\n"; string itemname = "\t설석 귀걸이\n"; string itemrequierment = "\t[적정 분해 숙련도: {0:0.00}]"; float itemrequiermentnumber = 29.00f; string itemrequi..

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#/수업 과제

2022.1.1 C# 수업과제 (디아블로 아이템 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) { Console.WriteLine("Hand Axe"); Console.WriteLine("Axe"); Console.WriteLine(); Console.WriteLine("3.2"); Console.WriteLine("Damage Per Second \n"); Console.WriteLine("2-3 Damage"); Console.WriteLine("1.30..

Bueong_E
'코딩연습' 태그의 글 목록