관리자 글쓰기
코테 기록용
2024. 11. 4. 10:20 - pingu-s

https://www.acmicpc.net/workbook/view/568

 

https://www.acmicpc.net/problem/2908

 

상수

#include <iostream>
#include <algorithm>

using namespace std;

int main() {
  string num1, num2;
  cin >> num1 >> num2;
  reverse(num1.begin(), num1.end());
  reverse(num2.begin(), num2.end());
  int result = (stoi(num1) > stoi(num2)) ? stoi(num1) : stoi(num2);
  cout << result;

  return 0;
}

'개발 > C++' 카테고리의 다른 글

스택  (2) 2024.10.28
배열  (0) 2024.07.30
STL 알고리즘  (0) 2024.07.29
STL 컨테이너  (0) 2024.07.29
문법 정리  (0) 2024.07.25