728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.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);
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 9498번 시험 성적 JAVA(자바) 문제 풀이 (0) | 2022.04.23 |
---|---|
백준 1330번 두 수 비교하기 JAVA(자바) 문제 풀이 (0) | 2022.04.22 |
백준 10430번 JAVA(자바) 문제 풀이 (0) | 2022.04.20 |
백준 18108번 JAVA(자바) 문제 풀이 (0) | 2022.04.19 |
백준 10926번 JAVA(자바) 문제 풀이 (0) | 2022.04.18 |