문제
풀이
import java.io.*;
import java.util.*;
import java.text.DecimalFormat;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double kor = sc.nextInt();
double eng = sc.nextInt();
double math = sc.nextInt();
double avg = (kor+eng+math)/3.0;
DecimalFormat df = new DecimalFormat("0.00");
String str = df.format(avg);
System.out.print(str+" ");
if(avg >= 90) {
System.out.print("A");
} else if(avg >= 80) {
System.out.print("B");
} else if(avg >= 70) {
System.out.print("C");
} else if(avg >= 60) {
System.out.print("D");
} else {
System.out.print("F");
}
}
}
'코딩테스트' 카테고리의 다른 글
[구름LEVEL] 고장난 컴퓨터 (0) | 2021.03.12 |
---|---|
[구름LEVEL] 리그 경기 횟수 구하기 (0) | 2021.03.12 |
[구름LEVEL] 특정 문자 개수 구하기 (0) | 2021.03.12 |
[구름LEVEL] Substring (0) | 2021.03.12 |