자바알고리즘 - 입출력 - 백준 2588 곱셈

 

문제

(세 자리 수) × (세 자리 수)는 다음과 같은 과정을 통하여 이루어진다.

(1)과 (2)위치에 들어갈 세 자리 자연수가 주어질 때 (3), (4), (5), (6)위치에 들어갈 값을 구하는 프로그램을 작성하시오.

 

 

생각

(3) 은 472 * 5 이므로  (2) % 10 *(1)

(4) 는 472 * 8 이므로  ((2) % 100) / 10 * (1) 

(5) 는 472 * 3 이므로  (2) / 100 * (1)

(6) 은 (1) * (2)

 

코드

 

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader bf =  new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(bf.readLine());
        int M = Integer.parseInt(bf.readLine());
        System.out.println((M%10)*N);
        System.out.println((M%100)/10*N);
        System.out.println((M/100)*N);
        System.out.println(N*M);
    }
}

+ Recent posts