728x90
https://softeer.ai/practice/7353
소스코드
#include<iostream>
#include <vector>
#include <string>
#include <map>
#include <algorithm>
using namespace std;
int main(int argc, char** argv)
{
int n;
cin >> n;
vector<int> inputs;
int input, max = -100000;
for (int i = 0; i < n; i++)
{
cin >> input;
inputs.push_back(input);
}
int mul;
for (int i = 0; i < inputs.size(); i++)
{
for (int j = i + 1; j < inputs.size(); j++)
{
mul = inputs[i] * inputs[j];
if (max < mul)
{
max = inputs[i] * inputs[j];
}
}
}
cout << max;
return 0;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/C++]Lv3 네트워크 BFS (0) | 2024.07.17 |
---|---|
[Softeer/C++]Level2 연탄의 크기 (0) | 2024.03.08 |
[Softeer/C++]Level1 연탄 배달의 시작 (0) | 2024.03.07 |
[프로그래머스] Lv3 조건에 맞는 사용자와 총 거래금액 조회하기 (0) | 2024.01.03 |
[프로그래머스] Lv3 조건에 맞는 사용자와 총 거래금액 조회하기 (0) | 2024.01.03 |