백준 9498번 시험 성적
💻제출 코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int score = sc.nextInt();
if( score <= 100 && score >= 90 ){
System.out.println("A");
} else if( score <= 89 && score >= 80 ){
System.out.println("B");
} else if( score <= 79 && score >= 70 ){
System.out.println("C");
} else if( score <= 69 && score >= 60 ){
System.out.println("D");
} else {
System.out.println("F");
}
sc.close();
}
}
💡 if - else if - else 문 구조
if (조건식1) {
실행문1; // 조건식1이 true일 경우 실행
}
else if (조건식2) {
실행문2; // 조건식 1이 false이고 조건식2가 true일 경우 실행
} else {
실행문3; // 조건식 1과 2가 true일 경우 실행
}