4. 기타 공부/코테 준비
[백준 코테 풀기] 10430번. 나머지
김간장
2021. 11. 27. 23:52
[문제]
https://www.acmicpc.net/problem/10430
[풀이]
import java.util.Scanner;
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();
if((a >= 1) && (a <= 10000)) {
if((b >= 1) && (b <= 10000)) {
if((c >= 1) && (b <= 10000)) {
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);
}
}
}
}
}
a, b, c의 범위를 1과 10,000 사이의 수(number)로 제한 해야하는데, if문 말고 쓸 수 있는 방법이 있을까
시간될 때 고민해봐야겠다..