반응형
1. 두 자연수를 입력받는다.
2. System.out.println을 이용하여 연산을 출력한다.
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
sc.close();
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/b);
System.out.println(a%b);
}
}
'코딩 > BAEKJOON' 카테고리의 다른 글
[백준/BAEKJOON] 2588번 곱셈 JAVA (0) | 2021.08.09 |
---|---|
[백준/BAEKJOON] 10430번 나머지 JAVA (0) | 2021.08.09 |
[백준/BAEKJOON] 10998번 A*B JAVA (0) | 2021.08.08 |
[백준/BAEKJOON] 10172번 개 JAVA (0) | 2021.08.08 |
[백준/BAEKJOON] 10171번 고양이 JAVA (0) | 2021.08.08 |