[자바] ChoiceFormat
특정 범위에 속하는 값을 문자열로 변환해준다. import java.text.ChoiceFormat; public class ChiceFormatEx1 { public static void main(String[] args) { double[] limits = {50, 60, 70, 80, 90}; //낮은값->큰값, 오름차순 String[] grades = {"F", "D", "C", "B", "A"}; //경계값에 정의된 범위의 개수와 일치해야 됨 int[] scores = {100, 60, 45, 95, 88, 70, 52, 60, 30, 70}; ChoiceFormat form = new ChoiceFormat(limits, grades); for(int score : scores) { Syste..
2023. 2. 2.