[Info]Tags categorized posts and contents patterns..

[AJAX] Ajax Code E xamples.. [Book] About the book.. [CSS] CSS Code E xamples.. [DB] Sql Code E xamples.. [DEV] All development stor...

2016년 8월 16일 화요일

[JAVA] Baekjoon 두 수 A와 B를 입력받은 다음, A*B를 출력하는 프로그램을 작성하시오..

덧셈과 뺄셈이 끝나니 이번에는 곱셉을 하라고 한다.. 그럼 곱셉도 해볼까나.. 아마다 사칙연산은 다 시킬건가봄 ㅡ;;ㅡ..

문제
두 수 A와 B를 입력받은 다음, A*B를 출력하는 프로그램을 작성하시오.

입력
첫째 줄에 A와 B가 주어진다. (0 < A,B < 10)

출력

첫째 줄에 A*B를 출력한다.

딱히 설명은 필요 없을듯하다.. 바로 코드와 결과를 보도록 하자..

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package Code_201608;

import java.util.Scanner;

public class PrintAmultiplyB {

    @SuppressWarnings("resource")
    public static void main(String[] args) {
        // TODO Auto-generated method stub
  
        Scanner scan = new Scanner(System.in);
  
        //int a = 3;
        //int b = 4;
  
        int a = scan.nextInt();
        int b = scan.nextInt();
  
        int c = a * b;
        System.out.println(c);
        //System.out.println(a + b);
    }

}//



댓글 없음:

댓글 쓰기