곱셈할 두 수를 입력받아서 조건에 맞는 값을 출력하는 문제
나누기( / ) 와 나머지( % ) 를 잘! 생각하여 사용하여야 한다.
(4)에 들어갈 숫자에서 애먹음.....
1
2
3
4
5
6
7
8
9
10
11
12
|
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);
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
c |
'알고리즘 > Java' 카테고리의 다른 글
[JAVA] 백준 알고리즘 2단계 9498번 : 시험 성적 (0) | 2020.04.07 |
---|---|
[JAVA] 백준 알고리즘 2단계 1330번 : 두 수 비교하기 (0) | 2020.04.07 |
[JAVA] 백준 알고리즘 1단계 10430번 : 나머지 (0) | 2020.04.06 |
[JAVA] 백준 알고리즘 1단계 10998번 : A x B (0) | 2020.04.05 |
[JAVA] 백준 알고리즘 1단계 1000번 : A+B (0) | 2020.04.05 |