[BOJ/C++] 2908 상수

mani·2023년 5월 22일
0

baekjoon_step

목록 보기
51/73

숫자를 뒤집어서 비교하는 문제

문자열 -> 숫자
1. stoi함수
2. 문자-'0'


#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string a, b;
	cin >> a >> b;

	int aa = (a[0] - '0') + (a[1] - '0') * 10 + (a[2] - '0') * 100;
	int bb = (b[0] - '0') + (b[1] - '0') * 10 + (b[2] - '0') * 100;
	cout << max(aa, bb);

	return 0;
}
profile
log

0개의 댓글