1의자리 : n%10 10의자리 : n%100 / 10 100의자리 : n%1000 / 100 1000의자리 : n%10000 / 1000 10000의자리 : n%10000
MySQL : order by FIELD(col, val1, val2, ...)PostgreSQL : order by array_position(ARRAYval1, val2, val3, ..., col::TYPE)
int\[] arr = new int\[]{}integer\[] arr2 = Arrays.stream(arr).boxed().toArray(Integer\[]::new);
application.xml에서 component-scan통한 bean 등록시<context:component-scan base-package="패키지명"/>에서 'context:component-scan" is not bound'라는 에러 메시지가 뜰때는 상단에
eclipse 혹은 sts 자동완성 설정을 할 경우Window>Preferences>Java>Editor>Auto Activation에서 설정을 변경한다이때 상단 Insertion에서 Disable insertion triggers except 'Enter'을 체크하지
1부터 n \* n까지 규칙에 맞춰 적었을 때의 결과를 n개의 줄에 걸쳐 출력합니다.각 줄에는 각 행에 해당하는 n개의 숫자를 공백을 사이에 두고 출력합니다.import java.util.Scanner;public class Main {}