[JAVA | 백준] #9159 What is the air speed velocity... 🌬️
📍 What is the air speed velocity...https://www.acmicpc.net/problem/9159 입력의 첫 번째 줄 6 5는 차례대로 African swallows, European swallows이다.그리고 그 다음줄부터 20개의 입력을 받는데, a나 A 값 10개, e나 E 값 10개를 받는다.double[] african = new double[10];double[] european = new double[10]; 대문자 소문자 상관없이 같은 African이기 때문에 소문자로 치환한 후 같은 배열에 담는다.for (int i = 0; i Method1의 분자는 처음 입력받았던 수 * 10 (6 * 10)이고,분모는 a나 A로 입력받은 모든 값들을 ..
2024.07.29