[백준/BOJ] 백준 2908번 : 상수
2020. 9. 15. 20:35ㆍ알고리즘 문제풀이
입력된 숫자(문자열)를 뒤집어서 문자를 해결한다.
코드
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
string a, b;
cin >> a >> b;
//입력된 숫자(문자열)를 뒤집는다.
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
if (a > b)
cout << a;
else
cout << b;
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 10817번 : 세 수 (0) | 2020.09.16 |
---|---|
[백준/BOJ] 백준 3986번 : 좋은 단어 (0) | 2020.09.15 |
[백준/BOJ] 백준 2675번 : 문자열 반복 (0) | 2020.09.15 |
[백준/BOJ] 백준 10809번 : 알파벳 찾기 (0) | 2020.09.15 |
[백준/BOJ] 백준 4153번 : 직각삼각형 (0) | 2020.09.15 |