104301 [백준/BAEKJOON] 10430번 나머지 JAVA 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); } } 2021. 8. 9. 이전 1 다음