반응형
1. a, b, c를 입력받는다.
2. 4가지 연산을 출력한다.
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();
int c = sc.nextInt();
sc.close();
System.out.println((a + b) % c);
System.out.println((a % c + b % c) % c);
System.out.println((a * b) % c);
System.out.println((a % c * b % c) % c);
}
}
'코딩 > BAEKJOON' 카테고리의 다른 글
[백준/BAEKJOON] 1330번 두 수 비교하기 JAVA (0) | 2021.08.09 |
---|---|
[백준/BAEKJOON] 2588번 곱셈 JAVA (0) | 2021.08.09 |
[J STORY] [백준/BAEKJOON] 10869번 사칙연산 JAVA (0) | 2021.08.09 |
[백준/BAEKJOON] 10998번 A*B JAVA (0) | 2021.08.08 |
[백준/BAEKJOON] 10172번 개 JAVA (0) | 2021.08.08 |