알고리즘
-
[입출력과 사칙연산]1000, 1001, 10998, 1008백준 2023. 10. 8. 23:00
[1000]A+B import java.util.*; public class Main{ public static void main(String args[]){ Scanner sc = new Scanner(System.in); int a, b; a = sc.nextInt(); b = sc.nextInt(); System.out.println(a + b); } } [1001]A-B 생략 [100998]A*B 생략 [1008]A/B int는 int로 나누면 int가 되기 때문에 실수로 바꾸어 준다. 소수점 9자리로 만들기 위해 10^9을 곱해준 뒤 반올림하고 10^9을 나누어 준다.