"프로그래머스 120847 최댓값 만들기(1)"의 두 판 사이의 차이

 
1번째 줄: 1번째 줄:
==개요==
==개요==
{{프로그래머스|레벨=0|페이지=9}}
{{프로그래머스|레벨=0|페이지=9|분류=코딩테스트 입문}}
[[분류: 프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]
* [[프로그래머스 입문 캘린더]]
[[분류: 프로그래머스 코딩테스트 입문]]


==C++==
==C++==

2023년 11월 29일 (수) 01:04 기준 최신판

1 개요[ | ]

프로그래머스 120847 최댓값 만들기(1)

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(vector<int> numbers) {
    int answer = 0;
    int max1 = 0, max2 = 0;
    for (int num: numbers){
        if(num >= max1){
            max2 = max1;
            max1 = num;
        } else if(num > max2) {
            max2 = num;
        }
    }
    return max1 * max2;
}
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int solution(vector<int> numbers) {
    sort(numbers.begin(), numbers.end(), greater<int>());
    return numbers[0] * numbers[1];
}