똑같은 사칙연산 문제
실수한 점 : 나눗셈 ( / ) 으로 제출하여 틀림, 입력 조건에 맞는 if문 작성안함 (if문 작성안해도 정답처리 됌)
소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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();
if(a>=2 && b<=10000 && c<=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);
}
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > Java' 카테고리의 다른 글
[JAVA] 백준 알고리즘 2단계 1330번 : 두 수 비교하기 (0) | 2020.04.07 |
---|---|
[JAVA] 백준 알고리즘 1단계 2588번 : 곱셈 (0) | 2020.04.06 |
[JAVA] 백준 알고리즘 1단계 10998번 : A x B (0) | 2020.04.05 |
[JAVA] 백준 알고리즘 1단계 1000번 : A+B (0) | 2020.04.05 |
[JAVA] 백준 알고리즘 1단계 10171번 : 고양이 (0) | 2020.04.04 |