[JAVA] 천단위 콤마 찍기

hi·2022년 4월 24일
0

DecimalFormat 클래스 사용

int price = 500000;

DecimalFormat df = new DecimalFormat("###,###");
String money = df.format(price); // 리턴타입 String

System.out.println(money); 👉 500,000 출력

0개의 댓글