본문 바로가기

Programming Language/이것이 C# 연습문제 풀이14

이것이 C# 16장 연습문제 풀이 이것이 C# 이다 연습문제 풀이는 총 16장 까지 입니다 :) 2019. 12. 20.
이것이 C# 15장 연습문제 풀이 1번 문제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 using System; using System.Collections; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; using System.IO; namespace Practice2 { class Car { public int Cost { get; set; } public int MaxSpeed { get; set; } } class MainApp { static v.. 2019. 12. 20.
이것이 C# 14장 연습문제 풀이 1번 문제 10 + 30 * 2 = 70 2번 문제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 using System; using System.Collections; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; using System.IO; namespace Practice2 { class MainApp { static void Main(string[] args) { int[] array = { 11, 22, 33, 44, 55 }; int result = 0; Action acti.. 2019. 12. 20.
이것이 C# 13장 연습문제 풀이 1번 문제 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 using System; using System.Collections; using System.Linq; using System.Text; using System.Threading.Tasks; using static System.Console; using System.IO; namespace Practice2 { delegate int MyDelegate(int a, int b); // 익명메소드 선언 class MainApp { static void Main(string[] args) { MyDelegate Callback.. 2019. 12. 19.
이것이 C# 12장 연습문제 풀이 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 using System; using static System.Console; using System.Collections; namespace AS { class As { static void Main(string[] args) { int[] arr = new int[10]; try { for (int i = 0; i 2019. 5. 15.
이것이 C# 11장 연습문제 풀이 1. 첫번째 Queue는 모든형에 대한 값을 받을수있다. 두번째는 int 형으로 할당했기 때문에 10이라는 값을 제외한 나머지 변수들은 int형이 아니라서 불가합니다. 2. string string 2019. 5. 13.