본문 바로가기

분류 전체보기280

[C# 7일차] 배열을 이용한 맵 이동 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { int[,] arrHero = new int[2, 3]; int[,] arr = { {1, 3, 1 }, {1, 1, 2 } }; int rowIndex; int colIndex; //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); for (int i = 0; i < arr.GetLength(0); i++) { for(int j = 0; j < arr.. 2023. 1. 9.
[C# 7일차] 배열의 최대값과 최소값 최대값 구하기 배열 최대값변수에 배열의 첫번째 인덱스 값 저장 반복문i 최대값변수에 저장된 값이 배열[i]의 값보다 크다면 continue, 배열[i]의 값이 같거나 크다면 그 수 저장 1. 반복문으로 찾는 방법 2. 배열의 기능으로 찾는 방법 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); //최대값 구하기 int[] arr = { 20, 10,.. 2023. 1. 9.
[C# 7일차] 배열과 input input: (1~5까지) input:2이면 배열에 2가 몇 개 있는지 출력 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); int[] numbers = { 1, 3, 1, 3, 2, 3, 1, 4, 4, 5 }; int input; Console.Write("숫자를 입력하세요(1~5): "); input = Convert.ToInt32( Cons.. 2023. 1. 9.
[C# 7일차] 배열의 Class를 이용한 그룹화 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); Student[] students = new Student[5]; students[0] = new Student("학생0", 00000, 50); //Student student0 = new Student(); //student0.id = 00000; //student0.name = "학생0"; //.. 2023. 1. 9.
[C# 7일차] 배열 복습 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Study07 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); //길이가 5개인 배열을 생성하고 모든 요소의 값을 -1로 초기화 하세요 //같은 타입의 연속된 데이터들을 그룹화하고 관리하기 위함 //점수를 관리하기 위해 배열을 사용 int[] scores = new int[5]; Console.WriteLine("length: {0}", scores.Length); Console.. 2023. 1. 9.
[C# 6일차] 배열을 이용한 Inventory 저장, 찾기, 삭제 App Class using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Day6 { class App { //생성자 public App() { Console.WriteLine("App 생성자"); Console.WriteLine(); Inventory inventory = new Inventory(); inventory.AddItem(new Item("장검")); //장검 저장 inventory.AddItem(new Item("단검")); //단검 저장 inventory.AddItem(new Item("지팡이")); //지팡이 저장 i.. 2023. 1. 8.