ChoiceFormat과 MessageFormat
ChoiceFormat - 특정 범위에 속하는 값을 문자열로 변환(범위에 따른 정수를 문자로 표현 A, A+, B B+..) 예제1) import java.text.ChoiceFormat; public class ChoiceFormatEx1 { public static void main(String[] args) { double[] range = {60, 65, 70, 75, 80, 85, 90, 95}; String[] grades = {"D", "D+", "C", "C+", "B", "B+", "A", "A+"}; double[] scores = { 100, 86.6, 70, 60.5, 65.5, 78.6, 93, 80.4 }; ChoiceFormat form = new ChoiceFormat(ran..
2022. 1. 8.