첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000)
첫째 줄에 (A+B)%C, 둘째 줄에 ((A%C) + (B%C))%C, 셋째 줄에 (A×B)%C, 넷째 줄에 ((A%C) × (B%C))%C를 출력한다.
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String[] arr = br.readLine().split(" ");
int A = Integer.parseInt(arr[0]);
int B = Integer.parseInt(arr[1]);
int C = Integer.parseInt(arr[2]);
System.out.print((A + B) % C + "\n");
System.out.print((((A % C) + (B % C)) % C) + "\n");
System.out.print(((A * B) % C) + "\n");
System.out.println((((A % C) * (B % C)) % C) + "\n");
}
}
정답