반응형
단순히 입력값을 Scanner로 받아 문제에서 주어진대로 출력을 하면 되는 입출력 문제이다.
정답 코드 1)
import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner sca = new Scanner(System.in);
int a;
int b;
int c;
a = sca.nextInt();
b = sca.nextInt();
c = sca.nextInt();
int result1 = ((a+b)%c);
int result2 = (((a%c)+(b%c))%c);
int result3 = ((a*b)%c);
int result4 = (((a%c) * (b%c))%c);
System.out.println(result1);
System.out.println(result2);
System.out.println(result3);
System.out.println(result4);
}
}
반응형
'Baekjoon 자바 코드 > 입출력과 사칙연산' 카테고리의 다른 글
[백준] 11382번 꼬마 정민 풀이 코드 (Java 자바) (0) | 2024.04.24 |
---|---|
[백준] 2588번 곱셈 풀이 코드 (Java 자바) (0) | 2024.04.24 |
[백준] 18108번 1998년생인 내가 태국에서는 2541년생?! 풀이 코드 (Java 자바) (0) | 2024.04.17 |
[백준] 10926번 ??! 풀이 코드 (Java 자바) (0) | 2024.04.17 |
[백준] 10869번 사칙연산 풀이 코드 (Java 자바) (0) | 2024.04.17 |