0부터 N개의 수를 X만큼 분할하여 만들어 주는 로직
0부터 N개의 수를 X만큼 분할해 주는 로직이다. 몇개씩 끊어서 보내야 하는 경우가 있어서 썼다. public static int fromToToCnt(int insertInt){ double result = insertInt / (double) 1000; int intResult = (int) Math.ceil(result); //올림 return intResult; } public static void main(String[] args) throws Exception { int insertInt = 281; int fromToToCnt = fromToToCnt(insertInt); for(int i = 1 ; i
프로그래밍/JAVA
2021. 2. 23. 14:31