백준2588: 곱셈
문제
https://www.acmicpc.net/problem/2588
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 = sc.nextInt();
//백의 자리 (b/100)
//십의 자리 ((b%100)/10)
//일의 자리 (b%10)
System.out.println(a*(b%10));
System.out.println(a*((b%100)/10));
System.out.println(a*(b/100));
System.out.println(a*b);
}
}
댓글남기기