Dev.baelanche

[백준 2588] 곱셈 본문

Data Structure & Algorithm/PS - JAVA

[백준 2588] 곱셈

baelanche 2019. 6. 25. 22:58
반응형

 

각 자리수별로 곱셈을 진행한다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        System.out.println(a * (b%10));
        System.out.println(a * ((b/10)%10));
        System.out.println(a * (b/100));
        System.out.println(a * b);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 2562] 최댓값  (0) 2019.06.25
[백준 2753] 윤년  (0) 2019.06.25
[백준 10171] 고양이  (0) 2019.06.25
[백준 15683] 감시  (0) 2019.06.25
[백준 15686] 치킨 배달  (0) 2019.06.25
Comments