728x90
반응형
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int A = scan.nextInt();
int B = scan.nextInt();
int C = scan.nextInt();
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);
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 1330번 두 수 비교하기 JAVA(자바) 문제 풀이 (0) | 2022.04.22 |
---|---|
백준 2588번 JAVA(자바) 문제 풀이 (0) | 2022.04.21 |
백준 18108번 JAVA(자바) 문제 풀이 (0) | 2022.04.19 |
백준 10926번 JAVA(자바) 문제 풀이 (0) | 2022.04.18 |
백준 10869번 JAVA(자바) 문제 풀이 (0) | 2022.04.17 |