#연산자#비교연산자#Operator#CSharp#bool#C#1 _04_Operator / 비교연산 using System; namespace _04_Operator { internal calss program { static void Main(string[] args) { bool bResult; int num0 = 0, num1 = 0; Console.WriteLine("대소 비교 연산을 합니다."); Console.WriteLine("첫 번째 숫자를 입력하세요"); string strNum0 = Console.ReadLine(); num0 = Int32.Parse(strNum0); Console.WriteLine("두 번째 연산을 입력하세요"); string strNum1 = Console.ReadLine(); num1 = Int32.Parse(strNum1); //비교연산자의 결과는 True/F.. 2023. 3. 29. 이전 1 다음