[Cos Pro] 3_7_숫자 분리하기 (java) Math

2020-04-29

3_7_숫자 분리하기 (Cos Pro> Math)

풀이

package Math;

public class cospro_3_7_숫자분리하기 {

	public static void main(String[] args) {
		int a = 123456789;
		
		int divisor = 1;
		while(a/divisor !=0) { //a%divisor면 들어가지도 않고 끝남
			int f = a/divisor;
			int b = a%divisor;
			
			divisor *= 10;
			
			System.out.println(f + "  " + b);
		}
	}
}

후기 (–)

간단한 것도 복잡하게 생각하게 되니까…

리프레시 필수!

  1. 12345라는 숫자를 12345 / 1, 2345 / 12, 345 / 123, 45 … 이런 식으로 분리하고싶다면
  2. divisor를 1로 초기화한 후, 앞은 a/divisor 뒤는 a%divosor로 진행!