728x90
https://school.programmers.co.kr/learn/courses/30/lessons/120862
문제)정수 배열 numbers가 매개변수로 주어집니다. numbers의 원소 중 두 개를 곱해 만들 수 있는 최댓값을 return하도록 solution 함수를 완성해주세요.
풀이)
class Solution {
public int solution(int[] numbers) {
int answer = 0;
int max = numbers[0]*numbers[1];
for(int i=0; i<numbers.length; i++){
for(int j=1; j<numbers.length; j++){
if(i!=j&&numbers[i]*numbers[j]>max){
max=numbers[i]*numbers[j];
}
}
}
return answer=max;
}
}
728x90
'프로그래밍 > Java(자바)' 카테고리의 다른 글
[백준] 10871: X보다 작은 수 -Java(자바) (0) | 2024.01.05 |
---|---|
[백준] 10807: 개수 세기 -Java(자바) (0) | 2024.01.05 |
[프로그래머스] n의 배수 고르기 --java (1) | 2024.01.04 |
[프로그래머스] 숨어있는 숫자의 덧셈 (1) --java (1) | 2024.01.04 |
[프로그래머스] 문자열 뒤집기 --java (1) | 2024.01.04 |