728x90
8370
-
[백준-8370] Plane - Java공부/백준 2022. 9. 22. 21:01
https://www.acmicpc.net/problem/8370 8370번: Plane In the first and only line of the standard input there are four integers n1, k1, n2 and k2 (1 ≤ n1, k1, n2, k2 ≤ 1 000), separated by single spaces. www.acmicpc.net 백준 8370번 Plane 자바 풀이 난이도: 브론즈5 코드 import java.util.*; public class back8370{ public static void main(String args[]){ Scanner scanner = new Scanner(System.in); int arr[]=new int[4]; fo..