1. 문제
- 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오.
- 입력 : 첫째 줄에 시험 점수가 주어진다. 시험 점수는 0보다 크거나 같고, 100보다 작거나 같은 정수이다.
- 출력 : 시험 성적을 출력한다.
2. 문제 해석
- 점수를 입력받음
- 조건에 맞게 삼항 연산자 사용
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); System.out.print((a >= 90) ? "A" : (a >= 80) ? "B" : (a >= 70) ? "C" : (a >= 60) ? "D" : "F"); } }
- 그냥 가정문 사용하기
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); if(a>=90) System.out.println("A"); else if(a>=80) System.out.println("B"); else if (a>=70) System.out.println("C"); else if(a>=60) System.out.println("D"); else System.out.println("F"); } }
Share article