728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
int solution(int a, int b) {
int answer = 0;
string str1 = to_string(a)+ to_string(b);
string str2 = to_string(b)+ to_string(a);
answer = stoi(str1) > stoi(str2) ? stoi(str1) : stoi(str2);
return answer;
// 다른 사람 문제 풀이
//return max(stoi(to_string(a) + to_string(b)), stoi(to_string(b) + to_string(a)));
}
int to string -> to_string(int)
string to int -> stoi(string)
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스] Lv.0 n의 배수 (0) | 2023.10.12 |
---|---|
[프로그래머스] Lv.0 두 수의 연산값 비교하기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 문자열 곱하기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 문자 리스트를 문자열로 변환하기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 문자열 섞기 (0) | 2023.10.12 |