서식문자

전.java / / 2021. 2. 1. 23:06
728x90
public class ExerciseCh4_7_4 {
public class chp4_7_4 {
	public static void main(String[] args) {
		System.out.printf("%,7d\n", 1234);
		System.out.printf("%-,7d\n", 1234);
		System.out.printf("%(+-,9d\n", -1234);
		System.out.printf("%(0,9d\n", -1234);
		System.out.printf("%( -,9d\n", -1234);
	}
}

반응형
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기