Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 책리뷰
- pullrequest
- blog
- github
- 일본어문법
- Kotlin
- suspend
- 진짜학습지후기
- ai
- jlpt
- 코틀린
- 진짜일본어
- androidstudio
- webflux
- 안드로이드
- errorhandling
- Android
- 책추천
- KotlinInAction
- CustomTab
- GIT
- n3문법
- posting
- PR
- 일본어기초
- 학습지
- 진짜학습지
- rxjava
- coroutine
- 인공지능
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] 시험 성적_9498 본문
반응형
BaekJoon/BOJ [JAVA] 시험 성적_9498
HINT: java에서 출력 형식을 맞추는 방법은 여러가지가 있는데, 우선 DecimalFormat을 사용하는 것이고, 다른 하나는 C++처럼 printf에서 %.nf를 사용하는 것이다. 근데 DecimalFormat은 틀렸다고 나온다. 왜일까....8ㅅ8;; 그리고, 소수점 3째자리에서 반올림을 하는 방법은 Math.round를 사용해, Math.round(e*1000)/1000.0 를 이용하면 된다.
import java.util.Scanner;
public class baekjoon_9498 {
public static void main(String [] argc){
Scanner scanner = new Scanner(System.in);
int score = Integer.parseInt(scanner.next());
if(score>=90 && score<=100) System.out.println("A");
else if(score>=80 && score<=89) System.out.println("B");
else if(score>=70 && score<=79) System.out.println("C");
else if(score>=60 && score<=69) System.out.println("D");
else System.out.println("F");
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 셀프 넘버_4673 (0) | 2019.01.03 |
---|---|
BaekJoon/BOJ [JAVA] 더하기 사이클_1110 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] 평균_1546 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] X보다 작은 수_10871 (0) | 2018.11.25 |
BaekJoon/BOJ [JAVA] 세 수_10817 (0) | 2018.11.25 |
Comments