Anna belly belly hard/C#
-
[C# 개념] 4.6 논리 연산자Anna belly belly hard/C# 2023. 6. 30. 14:31
- 부울 연산(Boolean Operation) 이라고 하는 논리 연산(Logical Operation) : 참 과 거짓으로 이루어지는 진릿값이 피연산자 인 연산 - 논리곱 연산자 ( && : AND ) - 논리합 연산자 ( || : OR ) - 부정 연산자( ! : NOT ) using System; namespace LogicalOperator { class MainApp { static void Main(string[] args) { Console.WriteLine("Testing && ``."); Console.WriteLine($"1>0 && 4 0 && 4 0 && 4>5 : {1 > 0 && 4 > 5}"); Console.WriteLin..
-
[C# 개념] 4.3 증가 연산자와 감소 연산자Anna belly belly hard/C# 2023. 6. 30. 14:06
- 증가 연산자 : 피연산자의 값을 1 증가 - 감소 연산자 : 피연산자의 값을 1 감소 - 증가/감소 연산자는 피연산자를 하나만 받는 단항 연산자 입니다. - 전위 증가/감소 연산자 : 변수의 앞에 위치시켜 사용 - 후위 증가/감소 연산자 : 변수의 뒤에 위치시켜 사용 using System; namespace IncDecOperator { class MainApp { static void Main(string[] args) { int a = 10; Console.WriteLine(a++); Console.WriteLine(++a); Console.WriteLine(a--); Console.WriteLine(--a); } } }
-
[C# 개념] 4.2 산술 연산자Anna belly belly hard/C# 2023. 6. 30. 14:02
- 산술 연산자 : 수치 형식의 데이터를 다루는 연산자 - 산술 연산자는 이름이 나타내는 것 처럼 수치 형식에 대해서만 사용 할수 있다. 즉, 정수 형식과 부동 소수점 형식, decimal 형식에 대해서만 사용 가능 using System; namespace ArithmaticOperators { class MainApp { static void Main(string[] args) { int a = 111 + 222; Console.WriteLine($"a: {a}"); int b = a - 100; Console.WriteLine($"b: {b}"); int c = b * 10; Console.WriteLine($"c: {c}"); double d = c / 6.3; //피연산자 중 한쪽이 부동 소수형..
-
-
[C# 개념] 3.9 문자열 다루기Anna belly belly hard/C# 2023. 6. 29. 17:05
3.9.1 문자열 안에서 찾기 using static System.Console; namespace StringSearch { class MainApp { static void Main(string[] args) { string greeting = "Good Morning"; WriteLine(greeting); WriteLine(); //IndexOf() WriteLine("IndexOf 'Good' : {0}", greeting.IndexOf("Good")); WriteLine("IndexOf 'o' :{0}", greeting.IndexOf('o')); //LastIndexOf() WriteLine("LastIndexOf 'Good' : {0}", greeting.LastIndexOf("Good")..