[C# 제어문 실습 예제 코드] 점수를 입력받아 학점(등급)을 부여 //2. 0~100 사이의 정수를 입력받은 후에 90~100일 때 A, 80~89일 때 B, 70~79일 때 C, //60~69일 때 D, 50~59일 때 F, 그 외에는 NA를 출력하는 프로그램을 작성하시오. using System; namespace 조건문실습 { class Program { static void Main(string[] args) { //점수(score)를 입력받는다. int score = 0; Console.WriteLine("점수를 입력:"); score = int.Parse(Console.ReadLine()); if ((score >= 90) && (score = 80) && (score < 90))//아니면서..