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();
scan.close();
System.out.println(a+b);
System.out.println(a-b);
System.out.println(a*b);
System.out.println(a/b);
System.out.println(a%b);
}
}
728x90
반응형
'IT개발자 > 백준_Algorithm' 카테고리의 다른 글
백준 18108번 JAVA(자바) 문제 풀이 (0) | 2022.04.19 |
---|---|
백준 10926번 JAVA(자바) 문제 풀이 (0) | 2022.04.18 |
백준 1008번 JAVA(자바) 문제 풀이 (0) | 2022.04.16 |
백준 10998번 JAVA(자바) 문제 풀이 (0) | 2022.04.15 |
백준 1001번 JAVA(자바) 문제 풀이 (0) | 2022.04.14 |