[프로그래머스] 더 크게 합치기, 두 수의 연산값 비교하기

·2023년 7월 3일
0

Algorithm Study

목록 보기
55/77
post-custom-banner

문제

연산 ⊕는 두 정수에 대한 연산으로 두 정수를 붙여서 쓴 값을 반환합니다. 예를 들면 다음과 같습니다.

12 ⊕ 3 = 123
3 ⊕ 12 = 312
양의 정수 a와 b가 주어졌을 때, a ⊕ b와 b ⊕ a 중 더 큰 값을 return 하는 solution 함수를 완성해 주세요.

단, a ⊕ b와 b ⊕ a가 같다면 a ⊕ b를 return 합니다.

풀이

#include <string>
#include <vector>

using namespace std;

int solution(int a, int b) 
{
    string A = to_string(a);
    string B = to_string(b);
    
    int AplusB = stoi(A + B);
    int BplusA = stoi(B + A);
    
    int answer = 0;
    
    if(AplusB > BplusA)
        answer = AplusB;
    else
        answer = BplusA;
    
    return answer;
}

문제

연산 ⊕는 두 정수에 대한 연산으로 두 정수를 붙여서 쓴 값을 반환합니다. 예를 들면 다음과 같습니다.

12 ⊕ 3 = 123
3 ⊕ 12 = 312
양의 정수 a와 b가 주어졌을 때, a ⊕ b와 2 * a * b 중 더 큰 값을 return하는 solution 함수를 완성해 주세요.

단, a ⊕ b와 2 * a * b가 같으면 a ⊕ b를 return 합니다.

풀이

#include <string>
#include <vector>

using namespace std;

int solution(int a, int b) 
{
    int temp1 = stoi(to_string(a) + to_string(b));
    int temp2 = 2 * a * b;
    
    return temp1 >= temp2 ? temp1 : temp2;
}
post-custom-banner

0개의 댓글