본문 바로가기
CS/Algorithm

[알고리즘] A*B

by 별토끼. 2017. 10. 19.
반응형


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import java.util.Scanner;
 
public class java10998 {
 
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int a=scan.nextInt();
        int b=scan.nextInt();
        while(a>10||b>10||a<0||b<0) {
            a=scan.nextInt();
            b=scan.nextInt();            
        }
        int result=a*b;
        System.out.println(result);
 
    }
 
}
 
cs


반응형

'CS > Algorithm' 카테고리의 다른 글

[알고리즘] 나머지, A+B-2  (0) 2017.10.20
[알고리즘] 연산  (0) 2017.10.19
[알고리즘] A/B  (0) 2017.10.19
[알고리즘] 그대로 출력하기2  (0) 2017.10.19
[알고리즘] 그대로 출력하기  (0) 2017.10.19

댓글