본문 바로가기

Programming/C#

4장 심화연습문제 1 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 심화연습문제_4_1 { class Program { static void Main(string[] args) { int i = 0; int[] backsort = new int[8]; try { for (i = 0; i < 8; i++) { Console.Write("정수 입력후 엔터누르세요" + (i + 1) + ": "); backsort[i] = int.Parse(Console.ReadLine()); } for (i = 7; i < backsort.Length; i--) { Console.WriteLine(backsort[i]);.. 더보기
4장 심화연습문제 2 using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace 심화연습문제4_2 { class Program { static void Main(string[] args) { // 변수 선언 double deposit, today; double capital = 0.0; double total = 0.0; double balance = 0.0; try { // 입력값 받기 Console.Write("저축했던 날짜를 입력하세요: "); deposit = double.Parse(Console.ReadLine()); Console.Write("현재 날짜를 입.. 더보기
3장 연습문제 1,2 using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication4 { class Program { static void Main(string[] args) { int point; string result; Console.WriteLine("당신의 점수를 입력하세요"); string Value = Console.ReadLine(); point = Int32.Parse(Value); try { if (point > 90) { result = "A"; Console.WriteLine("당신의 학점은 {0}입니다", result); } else if (point > 80) { result = "B"; Co.. 더보기
4장 연습문제 3 using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication5 { class Program { static void Main(string[] args) { int i=0, j = 0; char[] aa = new char[6] {'A', 'B', 'C', 'D', 'E', 'F'}; for (i = 0; i< 6; i++) { for (j = 0; j 더보기
3장 심화연습문제 1 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 심화연습문제3_1 { enum point { A = 4, B = 3, C = 2, D = 1, } struct student { public string name; public string subject; public string checkpoint; } class Program { static void Main(string[] args) { point abcd = point.A; student exam1; exam1.name = "김병현"; exam1.subject = "정보네트워크"; exam1.checkpoint = "100점";.. 더보기
2장 심화연습문제 2 using System; using System.Collections.Generic; using System.Text; namespace 심화연습문제2_2 { class Program { static void Main(string[] args) { string str = "Hello"; Console.WriteLine("현재 환율: {0:c}", 1200); Console.WriteLine("10칸 공간에서 오른쪽으로 들여쓰기: {0,10}", str); Console.WriteLine("10칸 공간에서 왼쪽으로 들여쓰기 : {0,-10}", str); } } } 더보기
2장 심화연습문제 1 using System; using System.Collections.Generic; using System.Text; namespace 심화연습문제2_1 { class Program { static void Main(string[] args) { Console.Write("당신의 이름은?"); string inValue = Console.ReadLine(); Console.WriteLine("Hello,{0}", inValue); } } } 더보기