728x90
1) 주석 없는 VERSION
#include <stdio.h>
#include <iostream>
#include <string>
#include <stack>
#include <sstream>
using namespace std;
int main() {
string a, b;
cin >> a >> b;
char temp;
temp = a[0];
a[0] = a[2];
a[2] = temp;
std::stringstream sa(a);
int n;
sa >> n;
temp = b[0];
b[0] = b[2];
b[2] = temp;
std::stringstream sb(b);
int m;
sb >> m;
if (n > m) {
cout << n;
}
else {
cout << m;
}
}
2) 주석 있는 VERSION
#include <stdio.h>
#include <iostream>
#include <string>
#include <stack>
#include <sstream>
using namespace std;
int main() {
string a, b;
cin >> a >> b;
char temp;
// a를 거꾸로 읽기
temp = a[0];
a[0] = a[2];
a[2] = temp;
// b를 거꾸로 읽기
temp = b[0];
b[0] = b[2];
b[2] = temp;
if (a > b) {
cout << a;
}
else {
cout << b;
}
}
'BEAKJOON' 카테고리의 다른 글
백준(2941번 크로아티아 알파벳)풀이 C++ (0) | 2021.01.10 |
---|---|
백준(5622번 다이얼)풀이 C++ (0) | 2021.01.10 |
백준(1152번 단어의 개수)풀이 C++ (0) | 2021.01.09 |
백준(1157번 단어 공부)풀이 C++ (0) | 2021.01.09 |
백준(2675번 문자열 반복)풀이 C++ (0) | 2021.01.09 |