백준 2588번 곱셈

조한빈·2020년 10월 2일
0

자바 알고리즘

목록 보기
4/8

백준 곱셈 2588

접근 방법

472에 385를 곱하는 곱셈의 순서는
4725
472
8
472*3
을 자릿 수에 맞게 더하는 것이다.

입 출력

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int B = 0;
		int chan = 100;
		String b[] = sc.next().split("");
		for (int i = b.length-1; i >= 0; i--) {
			System.out.println(a * Integer.parseInt(b[i]));
		}
		for (int i = 0; i < b.length; i++) {
			B+=chan*Integer.parseInt(b[i]);
			chan/=10;
		}
		System.out.println(a*B);
		sc.close();
	}

}

0개의 댓글