if 문 if문은 if 부울식의 값에 따라서 실행할 문을 선택합니다. 다음의 if ~ else 구문은 score 변수의 값에 따라서 둘 중 한 개의 문장을 실행합니다. int score = 80; if(score >=60) { Console.WriteLine("합격"); } else { Console.WriteLine("불합격"); } else가 없는 if 구문은 조건식이 참(true)일 떄만 실행이 됩니다. int score = 90; if(score >=80) { Console.WriteLine("참 잘했습니다"); } if 구문을 중첩하여 여러 개의 조건을 확인할 수 있습니다. static void Main(string[] args) { int score = int.Parse(Console.Read..