10869번1 [J STORY] [백준/BAEKJOON] 10869번 사칙연산 JAVA 1. 두 자연수를 입력받는다. 2. System.out.println을 이용하여 연산을 출력한다. import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); sc.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); } } 2021. 8. 9. 이전 1 다음